summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorstanton <stanton>1998-11-03 01:02:28 (GMT)
committerstanton <stanton>1998-11-03 01:02:28 (GMT)
commit581eb2ace2b296844a19fc6a4947460955b82144 (patch)
treeaf6d3b26550cbc60f81f743c483581f6919c9c19 /tests
parent099b6e9e41a346098526d7088680732358fa2e72 (diff)
downloadtcl-581eb2ace2b296844a19fc6a4947460955b82144.zip
tcl-581eb2ace2b296844a19fc6a4947460955b82144.tar.gz
tcl-581eb2ace2b296844a19fc6a4947460955b82144.tar.bz2
fixed test that got stale on Windows
Diffstat (limited to 'tests')
-rw-r--r--tests/safe.test7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/safe.test b/tests/safe.test
index c4e71a5..74cac8d 100644
--- a/tests/safe.test
+++ b/tests/safe.test
@@ -9,7 +9,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: safe.test,v 1.3 1998/11/02 23:04:14 stanton Exp $
+# RCS: @(#) $Id: safe.test,v 1.4 1998/11/03 01:02:28 stanton Exp $
if {[string compare test [info procs test]] == 1} then {source defs}
@@ -167,9 +167,12 @@ test safe-6.1 {test safe interpreters knowledge of the world} {
test safe-6.2 {test safe interpreters knowledge of the world} {
SI; set r [$I eval {info script}]; DI; set r
} {}
-test safe-6.3 {test safe interpreters knowledge of the world} {
+test safe-6.3 {test safe interpreters knowledge of the world} {pcOnly} {
SI; set r [lsort [$I eval {array names tcl_platform}]]; DI; set r
} {byteOrder debug platform}
+test safe-6.3 {test safe interpreters knowledge of the world} {macOrUnix} {
+ SI; set r [lsort [$I eval {array names tcl_platform}]]; DI; set r
+} {byteOrder platform}
# more test should be added to check that hostname, nameofexecutable,
# aren't leaking infos, but they still do...