From 26f52eb13eb27c5aefdb644d96408376b5d63783 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 15 Oct 2013 00:57:39 -0500 Subject: Teach scripts/test.sh to call scripts/single.sh. --- scripts/test.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'scripts/test.sh') diff --git a/scripts/test.sh b/scripts/test.sh index 19f860b4..48a5bf3b 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -7,7 +7,12 @@ mkdir -p testdir if [ -z "$TEST_HOST" ] then - make install_flat PREFIX=testdir || exit 1 + if [ $# -ne 0 ] + then + PREFIX=testdir/ scripts/single.sh "$@" || exit 1 + else + make install_flat PREFIX=testdir || exit 1 + fi fi cd testdir -- cgit v1.2.3