diff options
| author | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2019-07-05 10:34:16 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2019-07-05 10:41:03 +0200 |
| commit | 9e1665c710f43f4f8850d80dce244e4f36e09d19 (patch) | |
| tree | 7774805cb3ee544c8723580a19bcc855fdfa0b75 /test | |
| parent | 1f9eb5f7a92edf0715cbda260253970da3314a1c (diff) | |
| download | lilliput-ae-implem-9e1665c710f43f4f8850d80dce244e4f36e09d19.tar.xz | |
Ajout d'un script de vérification plus exhaustif
Diffstat (limited to 'test')
| -rwxr-xr-x | test/check-all.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/check-all.sh b/test/check-all.sh new file mode 100755 index 0000000..e59b98c --- /dev/null +++ b/test/check-all.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +set -eux + +run () +{ + make clean + "$@" +} + +add_implems=(src/add_felicsref src/add_tweakeyloop src/add_threshold) + +for implem in ref ${add_implems[@]} +do + run make test IMPLEMENTATION=$(basename $implem) +done + +run make traces +run make traces IMPLEMENTATION=add_threshold + +for implem in ${add_implems[@]} +do + run ./test/check-implementation.sh $(basename $implem) +done + +run make nist +./test/python.sh |
