summaryrefslogtreecommitdiffstats
path: root/tests/platform.test
diff options
context:
space:
mode:
authorwelch <welch@noemail.net>1999-03-31 18:58:50 (GMT)
committerwelch <welch@noemail.net>1999-03-31 18:58:50 (GMT)
commitd03a3efbbb855626b60114b9b11898aa43686dd2 (patch)
tree53838ccd54d372bc8fdd683ce74aa83dccd2a4ff /tests/platform.test
parentbdf6cf11b20af180e032310d665d9d26e626c5b1 (diff)
downloadtcl-d03a3efbbb855626b60114b9b11898aa43686dd2.zip
tcl-d03a3efbbb855626b60114b9b11898aa43686dd2.tar.gz
tcl-d03a3efbbb855626b60114b9b11898aa43686dd2.tar.bz2
Added tests for auto_mkindex_parser quoting problems, BUGID 1657
FossilOrigin-Name: 51ffe4e6aeb1ac478aa5b29f26e8d94183d4199a
Diffstat (limited to 'tests/platform.test')
-rw-r--r--tests/platform.test20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/platform.test b/tests/platform.test
new file mode 100644
index 0000000..f5273b2
--- /dev/null
+++ b/tests/platform.test
@@ -0,0 +1,20 @@
+# The file tests the tcl_platform variable
+#
+# This file contains a collection of tests for one or more of the Tcl
+# built-in commands. Sourcing this file into Tcl runs the tests and
+# generates output for errors. No output means no errors were found.
+#
+# Copyright (c) 1999 by Scriptics Corporation
+#
+# See the file "license.terms" for information on usage and redistribution
+# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
+#
+# RCS: @(#)
+
+if {[info procs test] != "test"} {source defs}
+
+test platform-1.1 {TclpSetVariables: tcl_platform} {
+ lsort [array names tcl_platform]
+} {byteOrder machine os osVersion platform}
+
+return