From 76d4d6b2bafada7b790e817b7324d53f3d3a0c7f Mon Sep 17 00:00:00 2001 From: David Timber Date: Thu, 20 Aug 2020 12:23:35 +0930 Subject: Progress ... * Move DVault out of executable. Dynamically load it on startup * Improved testing scheme * Tidy up prne_*assert* macro series * Protocol: store host credentials in base64 string. No mask * Use the lock shm as a shared_global so the stats can persist * mmap() the executable read-only for later use --- src/run-tests.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 src/run-tests.sh (limited to 'src/run-tests.sh') diff --git a/src/run-tests.sh b/src/run-tests.sh new file mode 100755 index 0000000..aa51958 --- /dev/null +++ b/src/run-tests.sh @@ -0,0 +1,12 @@ +#!/bin/sh +for t in $(cat testlist); do + + echo "Running $t ... " + "./$t" + ret=$? + if [ $ret -eq 0 ]; then + echo "OK"; + else + echo "FAIL: $ret" + fi +done -- cgit