automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 03/32] runtest: pass *all* the given shell options to the test in


From: Stefano Lattarini
Subject: [PATCH 03/32] runtest: pass *all* the given shell options to the test invocation
Date: Thu, 26 Jul 2012 14:04:29 +0200

* runtest.in: Here.  This didn't work previously because, in our
option parsing loop, we were mistakenly redefining '$shell_opts'
each time, instead of appending to it.

Signed-off-by: Stefano Lattarini <address@hidden>
---
 runtest.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/runtest.in b/runtest.in
index 64ad0d7..0722141 100644
--- a/runtest.in
+++ b/runtest.in
@@ -44,12 +44,12 @@ while test $# -gt 0; do
        ;;
     -o)
        test $# -gt 1 || error "missing argument for option '$1'"
-       shell_opts="-o $2"
+       shell_opts="$shell_opts -o $2"
        shift
        ;;
     -*)
        # Assume it is an option to pass through to the shell.
-       shell_opts=$1;;
+       shell_opts="$shell_opts $1";;
      *)
        break;;
   esac
-- 
1.7.12.rc0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]