btrfs-progs/tests/hash-tests.sh
David Sterba 794af7bcd0 btrfs-progs: tests: use /bin/bash in the main scripts
Test scripts under tests/ should all use /bin/bash for consistency.

Signed-off-by: David Sterba <dsterba@suse.com>
2025-02-15 00:08:32 +01:00

44 lines
763 B
Bash
Executable File

#!/bin/bash
# Test all supported hash algorithms on all backends on the sample test vectors
# This requires all crypto backends available for full coverage.
make=make
opts="-j16 $@"
verdict=
die() {
echo "ERROR: $@"
exit 1
}
buildme() {
make clean-all
echo "BUILD WITH: $1"
./autogen.sh && configure \
--disable-documentation --disable-convert --disable-python \
--with-crypto="$1" || die "configure not working with: $@"
$make clean
$make $opts hash-vectest
if ./hash-vectest; then
verdict="$verdict
$1: OK"
fi
}
# main()
if ! [ -f configure.ac ]; then
echo "Please run me from the top directory"
exit 1
fi
buildme builtin
buildme libgcrypt
buildme libsodium
buildme libkcapi
buildme botan
buildme openssl
echo "VERDICT:"
echo "$verdict"