|
From: Pietro C. <ga...@ga...> - 2019-10-11 09:16:31
|
On Oct 04 2019, 20:03 UTC, Donald G Porter via Tcl-Core <tcl...@li...> wrote: > >Now available at > >https://sourceforge.net/projects/tcl/files/Tcl/8.6.10/ > >are candidate files making up pre-releases of Tcl and Tk 8.6.10. One issue on FreeBSD/amd64. Possibly due to me running inside a shared vps, so timing might not be as reliable: ==== cmdMZ-6.6 Tcl_TimeRateObjCmd: slower commands take longer, but it remains almost the same time of measument FAILED ==== Contents of test case: set m1 [timerate {_nrt_sleep 0} 20] set m2 [timerate {_nrt_sleep 0.2} 20] list [expr {[lindex $m1 0] < [lindex $m2 0]}] [expr {[lindex $m1 0] < 100}] [expr {[lindex $m2 0] > 100}] [expr {[lindex $m1 2] > 1000}] [expr {[lindex $m2 2] < 1000}] [expr {[lindex $m1 4] > 50000}] [expr {[lindex $m2 4] < 50000}] [expr {[lindex $m1 6] > 10 && [lindex $m1 6] < 100}] [expr {[lindex $m2 6] > 10 && [lindex $m2 6] < 100}] ---- Result was: 1 1 1 0 1 0 1 1 1 ---- Result should have been (exact matching): 1 1 1 1 1 1 1 1 1 ==== cmdMZ-6.6 FAILED -- Pietro Cerutti |