summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-08-26 01:12:10 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-08-26 01:12:10 -0700
commit9ce842e5b4c4e1757f9eff33e057906e022cee78 (patch)
tree40771466083b1018251036ccc62db6836fb7262c
parent6e7ab571f99c9456ef405a92a195245e9d2d26c2 (diff)
downloadtxr-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.txr4
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