aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xruntest2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 589b2d7..4b4690a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/runtest b/runtest
index 103108d..40af593 100755
--- a/runtest
+++ b/runtest
@@ -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+"$@"}