diff options
| author | dgp@users.sourceforge.net <dgp> | 2013-01-30 17:58:00 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2013-01-30 17:58:00 (GMT) |
| commit | a01ef97f7284f8e55a4bcc824c39af0455a559bc (patch) | |
| tree | 7a5a21328d26afb61961c84fae455f653161f18a /tests/platform.test | |
| parent | 0b8240780e95745313e805e421d82c620a21658c (diff) | |
| parent | 27e4e5af927e5a5ac2651a4b667cdde66da6bb11 (diff) | |
| download | tcl-a01ef97f7284f8e55a4bcc824c39af0455a559bc.zip tcl-a01ef97f7284f8e55a4bcc824c39af0455a559bc.tar.gz tcl-a01ef97f7284f8e55a4bcc824c39af0455a559bc.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 aab7c78..6596975 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 ::tcltest::loadTestedCommands catch [list package require -exact Tcltest [info patchlevel]] @@ -54,7 +58,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: |
