diff options
Diffstat (limited to '')
-rw-r--r-- | debian/tests/testsuite-live | 17 | ||||
-rw-r--r-- | debian/tests/testsuite-live-python2 | 8 | ||||
-rw-r--r-- | debian/tests/testsuite-live-python3 | 13 |
3 files changed, 38 insertions, 0 deletions
diff --git a/debian/tests/testsuite-live b/debian/tests/testsuite-live new file mode 100644 index 0000000..bbf20d0 --- /dev/null +++ b/debian/tests/testsuite-live @@ -0,0 +1,17 @@ +#!/bin/sh + +set -eu + +. debian/tests/common + +# manually build necessary files against the installed libseccomp + +# build live tests +for filename in *-live-*.tests; do + testname=$(echo "$filename" | cut -f 1 -d '.') + echo "Building $testname ..." + gcc -O2 -g "${testname}.c" util.c -pthread -lseccomp -o "$testname" +done + +echo "Running test suite ..." +./regression -T live diff --git a/debian/tests/testsuite-live-python2 b/debian/tests/testsuite-live-python2 new file mode 100644 index 0000000..9c9ded4 --- /dev/null +++ b/debian/tests/testsuite-live-python2 @@ -0,0 +1,8 @@ +#!/bin/sh + +set -eu + +. debian/tests/common + +echo "Running test suite ..." +./regression -T live -m python diff --git a/debian/tests/testsuite-live-python3 b/debian/tests/testsuite-live-python3 new file mode 100644 index 0000000..f4fb094 --- /dev/null +++ b/debian/tests/testsuite-live-python3 @@ -0,0 +1,13 @@ +#!/bin/sh + +set -eu + +. debian/tests/common + +# make sure "python" points to python3 as this is not configurable +# in the regression script +mkdir python3env +ln -s /usr/bin/python3 python3env/python + +echo "Running test suite ..." +PATH="$(pwd)/python3env:$PATH" ./regression -T live -m python |