From 4a67c7d370192b2459d07ed5b2169a27b68a1e21 Mon Sep 17 00:00:00 2001 From: Erez Zadok Date: Wed, 28 Nov 2007 21:02:43 -0500 Subject: [PATCH] Allow passing config file name to run-all-tests. --- run-all-tests | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/run-all-tests b/run-all-tests index 0bd3aff..87fa78e 100755 --- a/run-all-tests +++ b/run-all-tests @@ -1,5 +1,8 @@ #!/bin/sh # run all unionfs regression tests +# +# Usage: ./run-all-tests [conf] +# e.g., ./run-all-tests odf # ensure that all binaries are properly built make || exit $? @@ -10,5 +13,5 @@ for fs in $LIST do echo "Running $fs tests..." sleep 1 - MYFS=$fs ./run-tests default || exit $? + MYFS=$fs ./run-tests ${1:-default} || exit $? done -- 2.43.0