diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-04 10:18:41 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-04 10:18:41 (GMT) |
commit | e13edcba869deda8b613854d533c106c9855b61d (patch) | |
tree | 28a0e51b45a1905d9433d09556466bc2c74e7fd9 | |
parent | 6285c1336732a6a7db1fc3627dad6fe6176fbee6 (diff) | |
download | tcl-e13edcba869deda8b613854d533c106c9855b61d.zip tcl-e13edcba869deda8b613854d533c106c9855b61d.tar.gz tcl-e13edcba869deda8b613854d533c106c9855b61d.tar.bz2 |
Test constraint notInCIenv no longer necessary (due to previous fix)
-rw-r--r-- | tests/winTime.test | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/winTime.test b/tests/winTime.test index 68be966..ed8b625 100644 --- a/tests/winTime.test +++ b/tests/winTime.test @@ -19,9 +19,6 @@ if {"::tcltest" ni [namespace children]} { catch [list package require -exact Tcltest [info patchlevel]] testConstraint testwinclock [llength [info commands testwinclock]] -# Some things fail under all Continuous Integration systems for subtle reasons -# such as CI often running with elevated privileges in a container. -testConstraint notInCIenv [expr {![info exists ::env(CI)]}] # The next two tests will crash on Windows if the check for negative # clock values is not done properly. @@ -43,7 +40,7 @@ test winTime-1.2 {TclpGetDate} {win} { # with the Windows clock. 30 sec really isn't enough, # but how much time does a tester have patience for? -test winTime-2.1 {Synchronization of Tcl and Windows clocks} {testwinclock notInCIenv} { +test winTime-2.1 {Synchronization of Tcl and Windows clocks} testwinclock { # May fail due to OS/hardware discrepancies. See: # http://support.microsoft.com/default.aspx?scid=kb;en-us;274323 set failed {} |