summaryrefslogtreecommitdiff
path: root/traces
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@airbus.com>2018-12-04 10:30:50 +0100
committerKévin Le Gouguec <kevin.legouguec@airbus.com>2018-12-04 10:40:58 +0100
commitca5d23276808b6b6c4d069e0ce77d776b5d93306 (patch)
tree3a67c1f7b1cd6282484a27b114eb6dba21bf43c8 /traces
parenta5dff3123ce3bcb0d20b72f0797e6f2c9e3eb99d (diff)
downloadlilliput-ae-implem-ca5d23276808b6b6c4d069e0ce77d776b5d93306.tar.xz
[WIP] Réorganisation des traces
Diffstat (limited to 'traces')
-rwxr-xr-xtraces/collect-traces.sh8
1 files changed, 2 insertions, 6 deletions
diff --git a/traces/collect-traces.sh b/traces/collect-traces.sh
index 2b5eb1e..16e8408 100755
--- a/traces/collect-traces.sh
+++ b/traces/collect-traces.sh
@@ -13,16 +13,12 @@ d=$(mktemp -d)
git apply ${patch}
-for makefile in $(find crypto_aead -name Makefile)
+for makefile in $(find test -name Makefile)
do
implem_dir=$(dirname ${makefile})
make -C ${implem_dir} clean
- [[ ${implem_dir} =~ lilliputae(i|ii)([0-9]+)v ]]
-
- ae_type=${BASH_REMATCH[1]}
- keysize=${BASH_REMATCH[2]}
- make -C ${implem_dir} ${trace_type}-${keysize}-${ae_type}
+ make -C ${implem_dir} ${trace_type}
cp ${implem_dir}/results/traces*.txt ${d}
done