diff options
author | Ben Elliston <bje@gnu.org> | 2016-04-18 10:33:15 +1000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2016-04-18 10:33:15 +1000 |
commit | e3307d2afc4de11d76c6d96ddca62a1f3874453c (patch) | |
tree | 03b18783eac038df8853be316663d233cf2810e1 | |
parent | d7837b1ffb0bb30d6391c2ba2fd66db4719b7a24 (diff) | |
download | dejagnu-e3307d2afc4de11d76c6d96ddca62a1f3874453c.tar.gz dejagnu-e3307d2afc4de11d76c6d96ddca62a1f3874453c.tar.bz2 dejagnu-e3307d2afc4de11d76c6d96ddca62a1f3874453c.zip |
* runtest: Remove quoting in final exec command.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | runtest | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2016-04-18 Ben Elliston <bje@gnu.org> + + * runtest: Remove quoting in final exec command. + 2016-04-17 Ben Elliston <bje@gnu.org> * lib/remote.exp: Load ssh.exp lib. @@ -145,4 +145,4 @@ if ! type "$expectbin" > /dev/null 2> /dev/null ; then exit 1 fi -exec "$expectbin" "$debug" -- "$runpath/runtest.exp" "$target" ${1+"$@"} +exec $expectbin $debug -- $runpath/runtest.exp $target ${1+"$@"} |