summaryrefslogtreecommitdiff
path: root/test/check-all.sh
diff options
context:
space:
mode:
authorGaetan Leplus <gaetan.leplus@airbus.com>2019-07-05 16:16:19 +0200
committerGaetan Leplus <gaetan.leplus@airbus.com>2019-07-05 16:16:19 +0200
commit62433c71e25f157dd79ba10d81631ee4c67f8eb1 (patch)
tree3ac352a3598fa444d45695dbb2b4cee63698ac57 /test/check-all.sh
parentde5f3445b5d382237afc39869907957e65c8a91e (diff)
parent75d7f59658539c699cdf9c7a3abdbead15aac199 (diff)
downloadlilliput-ae-implem-62433c71e25f157dd79ba10d81631ee4c67f8eb1.tar.xz
Merge remote-tracking branch 'origin/master' into fix-vhdltbc
Diffstat (limited to 'test/check-all.sh')
-rwxr-xr-xtest/check-all.sh27
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