diff options
Diffstat (limited to 'tests/all_funcs')
-rwxr-xr-x | tests/all_funcs | 13 |
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 |