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

Adjusting CPU time for new testing cases.

This commit is contained in:
mkv 2014-12-01 11:01:56 +03:00 committed by bugmaster
parent d2d9e8dc0e
commit e159a66863
2 changed files with 14 additions and 12 deletions

View File

@ -51,21 +51,21 @@ if {[string compare $currentOS "Windows NT"] == 0} {
if {[string compare $currentOS "Linux"] == 0} { if {[string compare $currentOS "Linux"] == 0} {
if {[regexp {Debug mode} [dversion]]} { if {[regexp {Debug mode} [dversion]]} {
# DEBUG mode # DEBUG mode
# initial CPU_time for LINUX in DEBUG mode is 292 ((132+14)*2) sec # initial CPU_time for LINUX in DEBUG mode is 900 sec
puts "Checking LINUX performance in debug mode..." puts "Checking LINUX performance in debug mode..."
if {$CPU_time > 292.} { if {$CPU_time > 900.} {
puts "ERROR: OCC25487 is reproduced." puts "ERROR: OCC25487 is reproduced."
puts " Low performance: $CPU_time (but should be less than 292 sec)" puts " Low performance: $CPU_time (but should be less than 900 sec)"
} else { } else {
puts "Done!" puts "Done!"
} }
} else { } else {
# OPTIMIZE mode # OPTIMIZE mode
# initial CPU_time for LINUX in OPTIMIZE mode is 146 (132+14) sec # initial CPU_time for LINUX in OPTIMIZE mode is 190 (173+17) sec
puts "Checking LINUX performance in optimize mode..." puts "Checking LINUX performance in optimize mode..."
if {$CPU_time > 146.} { if {$CPU_time > 190.} {
puts "ERROR: OCC25487 is reproduced." puts "ERROR: OCC25487 is reproduced."
puts " Low performance: $CPU_time (but should be less than 146 sec)" puts " Low performance: $CPU_time (but should be less than 190 sec)"
} else { } else {
puts "Done!" puts "Done!"
} }

View File

@ -6,6 +6,8 @@ puts ""
# Extrema_GenExtPS needs to be optimized # Extrema_GenExtPS needs to be optimized
########################################## ##########################################
cpulimit 1500
pload DATAEXCHANGEKERNEL pload DATAEXCHANGEKERNEL
# Restore testing shape and get timing characteristics for operation stepread # Restore testing shape and get timing characteristics for operation stepread
@ -51,21 +53,21 @@ if {[string compare $currentOS "Windows NT"] == 0} {
if {[string compare $currentOS "Linux"] == 0} { if {[string compare $currentOS "Linux"] == 0} {
if {[regexp {Debug mode} [dversion]]} { if {[regexp {Debug mode} [dversion]]} {
# DEBUG mode # DEBUG mode
# initial CPU_time for LINUX in DEBUG mode is 902 ((410+41)*2) sec # initial CPU_time for LINUX in DEBUG mode is 1500 sec
puts "Checking LINUX performance in debug mode..." puts "Checking LINUX performance in debug mode..."
if {$CPU_time > 902.} { if {$CPU_time > 1500.} {
puts "ERROR: OCC25487 is reproduced." puts "ERROR: OCC25487 is reproduced."
puts " Low performance: $CPU_time (but should be less than 902 sec)" puts " Low performance: $CPU_time (but should be less than 1500 sec)"
} else { } else {
puts "Done!" puts "Done!"
} }
} else { } else {
# OPTIMIZE mode # OPTIMIZE mode
# initial CPU_time for LINUX in OPTIMIZE mode is 451 (410+41) sec # initial CPU_time for LINUX in OPTIMIZE mode is 575 (523+52) sec
puts "Checking LINUX performance in optimize mode..." puts "Checking LINUX performance in optimize mode..."
if {$CPU_time > 451.} { if {$CPU_time > 575.} {
puts "ERROR: OCC25487 is reproduced." puts "ERROR: OCC25487 is reproduced."
puts " Low performance: $CPU_time (but should be less than 451 sec)" puts " Low performance: $CPU_time (but should be less than 575 sec)"
} else { } else {
puts "Done!" puts "Done!"
} }