aboutsummaryrefslogtreecommitdiff
path: root/tests/all_funcs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/all_funcs')
-rwxr-xr-xtests/all_funcs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/all_funcs b/tests/all_funcs
new file mode 100755
index 000000000..f61a410c6
--- /dev/null
+++ b/tests/all_funcs
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+function proceed {
+ read -p "proceed ? [n] " response
+ if [ "$response" != "y" ]; then exit -1; fi
+}
+
+make clean tests_only EXTRA_CFLAGS='-DHASH_FUNCTION=HASH_BER'; proceed
+make clean tests_only EXTRA_CFLAGS='-DHASH_FUNCTION=HASH_FNV'; proceed
+make clean tests_only EXTRA_CFLAGS='-DHASH_FUNCTION=HASH_JEN'; proceed
+make clean tests_only EXTRA_CFLAGS='-DHASH_FUNCTION=HASH_OAT'; proceed
+make clean tests_only EXTRA_CFLAGS='-DHASH_FUNCTION=HASH_SAX'; proceed
+make clean tests_only EXTRA_CFLAGS='-DHASH_FUNCTION=HASH_SFH'; proceed