diff options
author | Rob Landley <rob@landley.net> | 2019-12-14 21:08:00 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-12-14 21:08:00 -0600 |
commit | 7c3881b403da3bc8b0da3c668d00ab9158937e53 (patch) | |
tree | 495375c6f28a46a75359dec1e1ebfb87644313a9 /scripts | |
parent | 348df2b817c13ebb240d7a30d875d0224eb57ff9 (diff) | |
download | toybox-7c3881b403da3bc8b0da3c668d00ab9158937e53.tar.gz |
Any substitute EVAL should supply its own --
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/runtest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runtest.sh b/scripts/runtest.sh index d1ae4408..25c8e104 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh @@ -115,7 +115,7 @@ testing() echo -ne "$3" > expected [ ! -z "$4" ] && echo -ne "$4" > input || rm -f input - echo -ne "$5" | ${EVAL:-eval} -- "$2" > actual + echo -ne "$5" | ${EVAL:-eval --} "$2" > actual RETVAL=$? # Catch segfaults |