diff options
| author | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2018-12-04 09:57:21 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2018-12-04 10:40:58 +0100 |
| commit | a5dff3123ce3bcb0d20b72f0797e6f2c9e3eb99d (patch) | |
| tree | 2aa202a743026a9c566f242db5e1d69546124f72 /Makefile | |
| parent | dded798f1a038c8482fcc5d41824a9161d0a60c2 (diff) | |
| download | lilliput-ae-implem-a5dff3123ce3bcb0d20b72f0797e6f2c9e3eb99d.tar.xz | |
Réorganisation des tests
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
