diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-08-26 01:12:10 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-08-26 01:12:10 -0700 |
commit | 9ce842e5b4c4e1757f9eff33e057906e022cee78 (patch) | |
tree | 40771466083b1018251036ccc62db6836fb7262c | |
parent | 6e7ab571f99c9456ef405a92a195245e9d2d26c2 (diff) | |
download | txr-9ce842e5b4c4e1757f9eff33e057906e022cee78.tar.gz txr-9ce842e5b4c4e1757f9eff33e057906e022cee78.tar.bz2 txr-9ce842e5b4c4e1757f9eff33e057906e022cee78.zip |
solaris: disable failing test case.
* tests/007/except-4.txr: This new test case does not work on
Solaris 10 because a shell script that kills itself via
kill $$ appears to be terminating successfully with an exit
status of 208, not appearing to be killed by a signal.
-rw-r--r-- | tests/007/except-4.txr | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/007/except-4.txr b/tests/007/except-4.txr index 0f87a706..3f0ab9e5 100644 --- a/tests/007/except-4.txr +++ b/tests/007/except-4.txr @@ -1,3 +1,7 @@ +@(include "../common") +@(if (eq (os-symbol) :solaris)) +@ (do (put-line "bar") (exit t)) +@(end) @(try) @(next (open-command "echo foo; kill $$")) @a |