diff options
author | dgp <dgp@users.sourceforge.net> | 2013-01-30 17:46:30 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-01-30 17:46:30 (GMT) |
commit | 91a7a404d263838b97b97250353e43c2e0244026 (patch) | |
tree | 2b6f271802dff517ab1ac014a845780edd5ee2d3 /tests/platform.test | |
parent | 1f7f9de6851bbf13e8435d152784c17481753e26 (diff) | |
download | tcl-91a7a404d263838b97b97250353e43c2e0244026.zip tcl-91a7a404d263838b97b97250353e43c2e0244026.tar.gz tcl-91a7a404d263838b97b97250353e43c2e0244026.tar.bz2 |
In the script library, selected modernizations from Patrick Fradin.
Diffstat (limited to 'tests/platform.test')
-rw-r--r-- | tests/platform.test | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/tests/platform.test b/tests/platform.test index 4f1eb82..ab82d07 100644 --- a/tests/platform.test +++ b/tests/platform.test @@ -9,10 +9,14 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. -if {[lsearch [namespace children] ::tcltest] == -1} { - package require tcltest - namespace import -force ::tcltest::* -} +package require tcltest 2 + +namespace eval ::tcl::test::platform { + namespace import ::tcltest::testConstraint + namespace import ::tcltest::test + namespace import ::tcltest::cleanupTests + + variable ::tcl_platform testConstraint testCPUID [llength [info commands testcpuid]] @@ -51,7 +55,10 @@ test platform-3.1 {CPU ID on Windows/UNIX} \ -result {^(?:AuthenticAMD|CentaurHauls|CyrixInstead|GenuineIntel)$} # cleanup -::tcltest::cleanupTests +cleanupTests + +} +namespace delete ::tcl::test::platform return # Local Variables: |