From 7de7232bb54f21f5383fd45179068368acf7984b Mon Sep 17 00:00:00 2001 From: "Matthias J. Kannwischer" Date: Fri, 26 Jul 2024 17:36:18 +0800 Subject: [PATCH] add cross-v9a to all tests --- tests/helloworld/helloworld.mk | 1 + tests/keccak-neon/keccak-neon.mk | 1 + tests/ntt-neon/ntt-neon.mk | 1 + tests/profiling/profiling.mk | 1 + tests/x25519/x25519.mk | 1 + 5 files changed, 5 insertions(+) diff --git a/tests/helloworld/helloworld.mk b/tests/helloworld/helloworld.mk index 91454a5..4b71f3f 100644 --- a/tests/helloworld/helloworld.mk +++ b/tests/helloworld/helloworld.mk @@ -6,6 +6,7 @@ TESTS += helloworld # Platforms this test should run on (matching the directory name in envs/) HELLOWORLD_PLATFORMS += cross-v8a HELLOWORLD_PLATFORMS += cross-v84a +HELLOWORLD_PLATFORMS += cross-v9a # C sources required for this test HELLOWORLD_SOURCES += main.c diff --git a/tests/keccak-neon/keccak-neon.mk b/tests/keccak-neon/keccak-neon.mk index 779fa7c..9b6d96d 100644 --- a/tests/keccak-neon/keccak-neon.mk +++ b/tests/keccak-neon/keccak-neon.mk @@ -6,6 +6,7 @@ TESTS += keccak-neon # Platforms this test should run on (matching the directory name in envs/) KECCAK_NEON_PLATFORMS += cross-v8a KECCAK_NEON_PLATFORMS += cross-v84a +KECCAK_NEON_PLATFORMS += cross-v9a # C sources required for this test KECCAK_NEON_SOURCES += main.c diff --git a/tests/ntt-neon/ntt-neon.mk b/tests/ntt-neon/ntt-neon.mk index 01cef79..4c44a94 100644 --- a/tests/ntt-neon/ntt-neon.mk +++ b/tests/ntt-neon/ntt-neon.mk @@ -6,6 +6,7 @@ TESTS += ntt-neon # Platforms this test should run on (matching the directory name in envs/) NTT_NEON_PLATFORMS += cross-v8a NTT_NEON_PLATFORMS += cross-v84a +NTT_NEON_PLATFORMS += cross-v9a # C sources required for this test NTT_NEON_SOURCES += main.c diff --git a/tests/profiling/profiling.mk b/tests/profiling/profiling.mk index bddfa7f..5d5196a 100644 --- a/tests/profiling/profiling.mk +++ b/tests/profiling/profiling.mk @@ -6,6 +6,7 @@ TESTS += profiling # Platforms this test should run on (matching the directory name in envs/) PROFILING_PLATFORMS += cross-v8a PROFILING_PLATFORMS += cross-v84a +PROFILING_PLATFORMS += cross-v9a # C sources required for this test PROFILING_SOURCES += main.c diff --git a/tests/x25519/x25519.mk b/tests/x25519/x25519.mk index f0e4a37..e5902e9 100644 --- a/tests/x25519/x25519.mk +++ b/tests/x25519/x25519.mk @@ -6,6 +6,7 @@ TESTS += x25519 # Platforms this test should run on (matching the directory name in envs/) X25519_PLATFORMS += cross-v8a X25519_PLATFORMS += cross-v84a +X25519_PLATFORMS += cross-v9a # C sources required for this test X25519_SOURCES += main.c