1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

Modified test case (increase cpulimit in Debug mode)

This commit is contained in:
bugmaster 2014-01-31 12:56:09 +04:00
parent ee7b5544a9
commit 8b1ad7e012
2 changed files with 10 additions and 2 deletions

View File

@ -49,7 +49,7 @@ Close D
# Check
set info [dchrono h show]
regexp {CPU user time: ([-0-9.+eE]+) seconds} $info full cpu_time
if { $cpu_time > 50 } {
if { $cpu_time > 100 } {
puts "Error: performance saving document D is too low"
} else {
puts "OK: performance saving document D is high"

View File

@ -6,6 +6,14 @@ puts ""
# Slow import of specific STEP data
######################################
cpulimit 1700
set ver [dversion]
if { [regexp "Debug" $ver] != 1 } {
set cpu_check 450
} else {
set cpu_check 1600
}
dchrono h reset
dchrono h start
stepread [locate_data_file bug24024_slow_import.stp] a *
@ -15,7 +23,7 @@ tpcompound result
set info [dchrono h show]
regexp {CPU user time: ([-0-9.+eE]+) seconds} $info full cpu_time
if { $cpu_time > 300 } {
if { $cpu_time > $cpu_check } {
puts "Error: performance of import of data is low"
} else {
puts "OK: performance of import of data is high"