From 8369ed31d0d687c35dc2464b347dadf16962cd27 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 20 Sep 2010 13:45:29 -0700 Subject: [PATCH] test: Fix notmuch-test to pass command-line arguments to sub-scripts. The is useful for things like "notmuch-test --valgrind", etc. --- test/notmuch-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/notmuch-test b/test/notmuch-test index 9b00d335..294c3fd7 100755 --- a/test/notmuch-test +++ b/test/notmuch-test @@ -15,7 +15,7 @@ rm -r test-results >/dev/null 2>/dev/null # Run the tests for test in $TESTS; do - ./$test + ./$test "$@" done # Report results -- 2.43.0