From: Nathan Lynch Date: Tue, 28 Oct 2014 02:00:06 +0000 (-0500) Subject: Test: remove bogus argument from prove invocation X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=2889dd08df7398eaaa139c43b5957534a5b3ef22 Test: remove bogus argument from prove invocation An argument of "$2" was added to the prove command line in tests/run.sh by 68270f0f604e "Mi test: Basic test structure". This is harmless since run.sh is never called with more than one argument, but it is confusing, and it breaks patches in OE that add support for running tests on the target. Signed-off-by: Nathan Lynch Signed-off-by: David Goulet --- diff --git a/tests/run.sh b/tests/run.sh index ce51639f7..c6c50fd9c 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -19,4 +19,4 @@ [ -z "$1" ] && echo "Error: No testlist. Please specify a testlist to run." && exit 1 -prove $2 --merge --exec '' - < $1 +prove --merge --exec '' - < $1