aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2021-09-13 10:52:21 -0700
committerEric Biggers <ebiggers@google.com>2021-09-13 10:52:27 -0700
commit2d61d505ba6b5f9f8b6eb141ac2e31714ed018c6 (patch)
tree0278492a5d9dea519edef92bb37c87b20d066cf6
parent66b1d8a276cb3836ac275cb9f3f6517a07462737 (diff)
downloadfsverity-utils-2d61d505ba6b5f9f8b6eb141ac2e31714ed018c6.tar.gz
scripts/run-tests.sh: test with OpenSSL 1.0
Signed-off-by: Eric Biggers <ebiggers@google.com>
-rwxr-xr-xscripts/run-tests.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh
index 9cdc7c1..55aeaec 100755
--- a/scripts/run-tests.sh
+++ b/scripts/run-tests.sh
@@ -163,6 +163,10 @@ BSSL=$HOME/src/boringssl
$MAKE CFLAGS="-O2 -Werror" LDFLAGS="-L$BSSL/build/crypto" \
CPPFLAGS="-I$BSSL/include" LDLIBS="-lcrypto -lpthread" check
+log "Build and test using OpenSSL 1.0"
+$MAKE CFLAGS="-O2 -Werror" LDFLAGS="-L/usr/lib/openssl-1.0" \
+ CPPFLAGS="-I/usr/include/openssl-1.0" check
+
log "Build and test using -funsigned-char"
$MAKE CFLAGS="-O2 -Werror -funsigned-char" check