From 0ceeef4afd3b34b970c7ae7a51b99a6b7ca716b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ignacio=20Escribano?= Date: Sun, 26 Dec 2021 15:48:08 +0100 Subject: [PATCH] Fix error --- graphics/convert_tables.sh | 2 +- test/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/convert_tables.sh b/graphics/convert_tables.sh index 704cd77..a1e1887 100644 --- a/graphics/convert_tables.sh +++ b/graphics/convert_tables.sh @@ -9,7 +9,7 @@ TYPES=( "commitment" "gake" ) -Ns=(2 4 8 16 32 64 128 256 512) +Ns=(2 4 8 16 32 64 128 256) mkdir -p ${FOLDER}/${OUTPUT} diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 10f27fa..db14b32 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -70,7 +70,7 @@ add_test(NAME test_speed_kem COMMAND sh -c "$ > ../k add_test(NAME test_speed_ake COMMAND sh -c "$ > ../ake.txt") add_test(NAME test_speed_commitment COMMAND sh -c "$ > ../commitment.txt") -set(Ns 2 4 8 16 32 64 128 256 512) +set(Ns 2 4 8 16 32 64 128 256) foreach(N IN LISTS Ns) add_test(NAME test_speed_gake_${N} COMMAND sh -c "$ ${N} > ../gake_${N}.txt") endforeach()