From 641831c0fb26c35ba210e62750003b03ec1106b8 Mon Sep 17 00:00:00 2001 From: mdejong Date: Tue, 3 Jul 2001 20:48:38 +0000 Subject: * tests/clock.test (clock-2.5): Adjust test so that it passes when the time slice is 60 msecs, now passes under Windows 98. --- ChangeLog | 5 +++++ tests/clock.test | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 996a0fd..9a5b854 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2001-07-03 Mo DeJong + * tests/clock.test (clock-2.5): Adjust test so that it passes + when the time slice is 60 msecs, now passes under Windows 98. + +2001-07-03 Mo DeJong + * win/tcl.m4 (SC_CONFIG_CFLAGS): Don't pass the v flag to ${AR} when using gcc, verbose output is not needed. diff --git a/tests/clock.test b/tests/clock.test index ea7325e..776586b 100644 --- a/tests/clock.test +++ b/tests/clock.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: clock.test,v 1.15 2000/10/31 00:30:35 hobbs Exp $ +# RCS: @(#) $Id: clock.test,v 1.16 2001/07/03 20:48:38 mdejong Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -46,8 +46,8 @@ test clock-2.5 {clock clicks tests, millisecond timing test} { set start [clock clicks -milli] after 10 set end [clock clicks -milli] - # assume, even with slow interp'ing, the diff is less than 60 msecs - expr {($end > $start) && (($end - $start) < 60)} + # 60 msecs seems to be the max time slice under Windows 95/98 + expr {($end > $start) && (($end - $start) <= 60)} } {1} # clock format -- cgit v0.12