mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
Modified test case (increase cpulimit in Debug mode)
This commit is contained in:
parent
ee7b5544a9
commit
8b1ad7e012
@ -49,7 +49,7 @@ Close D
|
|||||||
# Check
|
# Check
|
||||||
set info [dchrono h show]
|
set info [dchrono h show]
|
||||||
regexp {CPU user time: ([-0-9.+eE]+) seconds} $info full cpu_time
|
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"
|
puts "Error: performance saving document D is too low"
|
||||||
} else {
|
} else {
|
||||||
puts "OK: performance saving document D is high"
|
puts "OK: performance saving document D is high"
|
||||||
|
@ -6,6 +6,14 @@ puts ""
|
|||||||
# Slow import of specific STEP data
|
# 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 reset
|
||||||
dchrono h start
|
dchrono h start
|
||||||
stepread [locate_data_file bug24024_slow_import.stp] a *
|
stepread [locate_data_file bug24024_slow_import.stp] a *
|
||||||
@ -15,7 +23,7 @@ tpcompound result
|
|||||||
|
|
||||||
set info [dchrono h show]
|
set info [dchrono h show]
|
||||||
regexp {CPU user time: ([-0-9.+eE]+) seconds} $info full cpu_time
|
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"
|
puts "Error: performance of import of data is low"
|
||||||
} else {
|
} else {
|
||||||
puts "OK: performance of import of data is high"
|
puts "OK: performance of import of data is high"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user