summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--sha3.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 07030a0..6172393 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ $(LIB): $(LIB_OBJS)
# build and run test suite with sanitizers
test:
- $(CC) -o $(TEST_APP) $(TEST_CFLAGS) -DSHA3_TEST sha3.c && $(TEST_APP)
+ $(CC) -o $(TEST_APP) $(TEST_CFLAGS) -DTEST_SHA3 sha3.c && $(TEST_APP)
# build API documentation (requires doxygen)
doc:
diff --git a/sha3.c b/sha3.c
index f59ff2c..4db035d 100644
--- a/sha3.c
+++ b/sha3.c
@@ -73,7 +73,7 @@ static const uint64_t RCS[] = {
0x8000000080008081ULL, 0x8000000000008080ULL, 0x0000000080000001ULL, 0x8000000080008008ULL,
};
-#if (BACKEND == BACKEND_SCALAR) || defined(SHA3_TEST)
+#if (BACKEND == BACKEND_SCALAR) || defined(TEST_SHA3)
// If AVX-512 is supported and we are not building the test suite,
// then do not compile the scalar step functions.
//
@@ -240,7 +240,7 @@ static inline void permute_n_scalar(uint64_t a[static 25], const size_t num_roun
iota(a, (SHA3_NUM_ROUNDS - num_rounds + i));
}
}
-#endif /* (BACKEND == BACKEND_SCALAR) || defined(SHA3_TEST) */
+#endif /* (BACKEND == BACKEND_SCALAR) || defined(TEST_SHA3) */
#if BACKEND == BACKEND_AVX512
#include <immintrin.h>
@@ -2733,7 +2733,7 @@ const char *sha3_backend(void) {
#endif /* BACKEND */
}
-#ifdef SHA3_TEST
+#ifdef TEST_SHA3
#include <stdio.h> // printf()
#include <stdlib.h> // malloc() (used in test_kangarootwelve())
@@ -7348,6 +7348,6 @@ int main(void) {
printf("ok (%s)\n", sha3_backend());
}
-#endif /* SHA3_TEST */
+#endif /* TEST_SHA3 */
/** @endcond INTERNAL */