1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029826: Tests - test case perf/fclasses/strtod is unstable

Check of performance of accelerated Strtod() vs. standard strtod() in the test is relaxed: now test passes if Strtod() is at least 1.5 times faster
This commit is contained in:
abv 2018-06-05 16:38:45 +03:00 committed by bugmaster
parent bd6f0d2ff9
commit 4e73d75b03

View File

@ -17,10 +17,10 @@ proc CheckAtof {nbvalues nbdigits min max} {
! [regexp {Strtod\s+([0-9.]+)} $res bidon cpu_Strtod] } {
puts "Error: cannot interpret results of test command!"
} else {
if { $cpu_atof < 2 * $cpu_Atof } {
if { $cpu_atof < 1.5 * $cpu_Atof } {
puts "Error: Atof() is expected to be at least 2 times better than atof()!"
}
if { $cpu_strtod < 2 * $cpu_Strtod } {
if { $cpu_strtod < 1.5 * $cpu_Strtod } {
puts "Error: Strtod() is expected to be at least 2 times better than strtod()!"
}
}