From 1660d4b7a65d9ad2ce0deaa19d35579ca4084ac5 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 10:06:26 +0200 Subject: Adding upstream version 2:2.6.1. Signed-off-by: Daniel Baumann --- tests/run-all-symbols | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 tests/run-all-symbols (limited to 'tests/run-all-symbols') diff --git a/tests/run-all-symbols b/tests/run-all-symbols new file mode 100755 index 0000000..775d5bb --- /dev/null +++ b/tests/run-all-symbols @@ -0,0 +1,21 @@ +#!/bin/bash + +DIR=../.libs +FILE=$DIR/libcryptsetup.so + +function fail() +{ + [ -n "$1" ] && echo "$1" + exit 2 +} + +function skip() +{ + [ -n "$1" ] && echo "$1" + exit 77 +} + +test -d $DIR || fail "Directory $DIR is missing." +test -f $FILE || skip "WARNING: Shared $FILE is missing, test skipped." + +./all-symbols-test $FILE $@ -- cgit v1.2.3