diff options
author | Jeff Epler <jepler@unpythonic.net> | 2010-09-07 09:29:51 -0500 |
---|---|---|
committer | Jeff Epler <jepler@unpythonic.net> | 2010-09-07 13:43:06 -0500 |
commit | 5aa42c9a61e8b94c132905db60a9446d63c39a2f (patch) | |
tree | 782ce872f18a48f9bfba257223d793df84ad8ccd | |
parent | d7dc1300b9424377a5409939aafdaa35b5436164 (diff) | |
download | linuxcnc-5aa42c9a61e8b94c132905db60a9446d63c39a2f.tar.gz linuxcnc-5aa42c9a61e8b94c132905db60a9446d63c39a2f.zip |
testsuite: fix overrun test
the overrun test should exit with 0 when runtests detected the
artificial overrun error, and exit with 0 otherwise.
-rwxr-xr-x | tests/overrun/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/overrun/test.sh b/tests/overrun/test.sh index 55b685bdd..29bb54419 100755 --- a/tests/overrun/test.sh +++ b/tests/overrun/test.sh @@ -5,4 +5,4 @@ trap "rm -rf $TMPDIR" 0 1 2 3 9 15 TEST_HAL=$TMPDIR/test.hal echo loadusr -w echo overrun > $TMPDIR/test.hal -runtests $TMPDIR 2>&1 +! runtests $TMPDIR 2>&1 |