summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@airbus.com>2018-12-04 09:57:21 +0100
committerKévin Le Gouguec <kevin.legouguec@airbus.com>2018-12-04 10:40:58 +0100
commita5dff3123ce3bcb0d20b72f0797e6f2c9e3eb99d (patch)
tree2aa202a743026a9c566f242db5e1d69546124f72 /Makefile
parentdded798f1a038c8482fcc5d41824a9161d0a60c2 (diff)
downloadlilliput-ae-implem-a5dff3123ce3bcb0d20b72f0797e6f2c9e3eb99d.tar.xz
Réorganisation des tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8ee2ef6..1b9668a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
modes = i ii
keylengths = 128 192 256
-tests = $(foreach m,$(modes),$(foreach l,$(keylengths),test/$(m)-$(l)))
+variants = $(foreach m,$(modes),$(foreach l,$(keylengths),$(m)-$(l)))
.PHONY: clean nist test traces
@@ -14,9 +14,9 @@ clean::
test:
status=0; \
- for i in $(tests); \
+ for i in $(variants); \
do \
- make -C $$i $@ || status=1; \
+ make -C test/$$i test || status=1; \
done; \
exit $$status