Test: remove bogus argument from prove invocation
authorNathan Lynch <nathan_lynch@mentor.com>
Tue, 28 Oct 2014 02:00:06 +0000 (21:00 -0500)
committerDavid Goulet <dgoulet@efficios.com>
Wed, 29 Oct 2014 18:27:08 +0000 (14:27 -0400)
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 <nathan_lynch@mentor.com>
Signed-off-by: David Goulet <dgoulet@efficios.com>
tests/run.sh

index ce51639f762684cd705d8e7e8ef54742fc1cdd7a..c6c50fd9cff94ecb02ef1e9b3eab2e98180043c6 100755 (executable)
@@ -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
This page took 0.02475 seconds and 4 git commands to generate.