summaryrefslogtreecommitdiffstats
path: root/tests
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
commit0efaa0c628db9b62f3a3d20d07cd3c2e4cbda3ca (patch)
tree40771466083b1018251036ccc62db6836fb7262c /tests
parentb1c7429d1d36be399b65551e8be9f15e53917e90 (diff)
downloadtxr-0efaa0c628db9b62f3a3d20d07cd3c2e4cbda3ca.tar.gz
txr-0efaa0c628db9b62f3a3d20d07cd3c2e4cbda3ca.tar.bz2
txr-0efaa0c628db9b62f3a3d20d07cd3c2e4cbda3ca.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.
Diffstat (limited to 'tests')
-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