summaryrefslogtreecommitdiffstats
path: root/tests/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-xtests/run.sh22
1 files changed, 8 insertions, 14 deletions
diff --git a/tests/run.sh b/tests/run.sh
index 03cd9f5c2..aad3acb0d 100755
--- a/tests/run.sh
+++ b/tests/run.sh
@@ -43,20 +43,14 @@ function find_test_scripts()
while [ -n "$1" ]; do
case "$1" in
- --force)
- OPTS="$OPTS --force"
- ;;
- --fake)
- OPTS="$OPTS --fake"
- ;;
- --memcheck)
- OPTS="$OPTS --memcheck"
- ;;
- --verbose)
- OPTS="$OPTS --verbose"
- ;;
- --skip-loopdevs)
- OPTS="$OPTS --skip-loopdevs"
+ --force |\
+ --fake |\
+ --memcheck |\
+ --verbose |\
+ --skip-loopdevs |\
+ --parsable)
+ # these options are simply forwarded to the test scripts
+ OPTS="$OPTS $1"
;;
--nonroot)
if [ $(id -ru) -eq 0 ]; then