diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-08-02 12:45:54 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-08-02 12:45:54 (GMT) |
commit | a4933a938983bbd7a30846b22f1dc12d2b894349 (patch) | |
tree | 857718f2c70893ad7410c2f6fa9b2dbe068c3f79 /tests/cmdMZ.test | |
parent | 1464897b1cbf0ec6dbcbd8be9f09b40224a95656 (diff) | |
download | tcl-a4933a938983bbd7a30846b22f1dc12d2b894349.zip tcl-a4933a938983bbd7a30846b22f1dc12d2b894349.tar.gz tcl-a4933a938983bbd7a30846b22f1dc12d2b894349.tar.bz2 |
Add one more knownMsvcBug marker, for a test-case which sometimes fails in Travis.
Fix a struct initializer, add two typecasts and a "const", which can generate gcc warnings with some compiler options.
Diffstat (limited to 'tests/cmdMZ.test')
-rw-r--r-- | tests/cmdMZ.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/cmdMZ.test b/tests/cmdMZ.test index 5ee2d23..d77629b 100644 --- a/tests/cmdMZ.test +++ b/tests/cmdMZ.test @@ -22,12 +22,15 @@ namespace eval ::tcl::test::cmdMZ { namespace import ::tcltest::makeFile namespace import ::tcltest::removeFile namespace import ::tcltest::temporaryDirectory + namespace import ::tcltest::testConstraint namespace import ::tcltest::test if {[namespace which -command ::tcl::unsupported::timerate] ne ""} { namespace import ::tcl::unsupported::timerate } + testConstraint knownMsvcBug [expr {![info exists ::env(TRAVIS_OS_NAME)] || ![string match windows $::env(TRAVIS_OS_NAME)]}] + proc ListGlobMatch {expected actual} { if {[llength $expected] != [llength $actual]} { return 0 @@ -343,7 +346,7 @@ test cmdMZ-5.4 {Tcl_TimeObjCmd: nothing happens with negative iteration counts} test cmdMZ-5.5 {Tcl_TimeObjCmd: result format} -body { time {format 1} } -match regexp -result {^\d+ microseconds per iteration} -test cmdMZ-5.6 {Tcl_TimeObjCmd: slower commands take longer} { +test cmdMZ-5.6 {Tcl_TimeObjCmd: slower commands take longer} knownMsvcBug { expr {[lindex [time {_nrt_sleep 1}] 0] < [lindex [time {_nrt_sleep 20}] 0]} } 1 test cmdMZ-5.7 {Tcl_TimeObjCmd: errors generate right trace} { |