From a7c147f4101c6617d5ad9544ea2c303e904c22d2 Mon Sep 17 00:00:00 2001 From: Joost Rijneveld Date: Thu, 11 Apr 2019 09:54:52 +0200 Subject: [PATCH] Include 'common' in name of common test binaries --- test/Makefile | 2 +- test/test_common.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 167d9dbc..bb1ea5ce 100644 --- a/test/Makefile +++ b/test/Makefile @@ -38,7 +38,7 @@ testvectors: $(DEST_DIR)/testvectors_$(SCHEME)_$(IMPLEMENTATION) .PHONY: printparams printparams: $(DEST_DIR)/printparams_$(SCHEME)_$(IMPLEMENTATION) -$(DEST_DIR)/test_%: common/%.c $(COMMON_FILES) +$(DEST_DIR)/test_common_%: common/%.c $(COMMON_FILES) mkdir -p $(DEST_DIR) $(CC) $(CFLAGS) $< $(COMMON_FILES) -o $@ diff --git a/test/test_common.py b/test/test_common.py index ec7a593f..3640bb3f 100644 --- a/test/test_common.py +++ b/test/test_common.py @@ -16,7 +16,7 @@ def test_common(): def check_common(primitive): - binname = os.path.join('..', 'bin', 'test_'+primitive) + binname = os.path.join('..', 'bin', 'test_common_'+primitive) helpers.make(binname) helpers.run_subprocess([binname])