From: bugmaster Date: Fri, 31 Jan 2014 08:56:09 +0000 (+0400) Subject: Modified test case (increase cpulimit in Debug mode) X-Git-Tag: HYDRO-2014-01-31~1 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=8b1ad7e012ef655aec827c19483587152becbe58;p=occt-copy.git Modified test case (increase cpulimit in Debug mode) --- diff --git a/tests/bugs/caf/bug2793 b/tests/bugs/caf/bug2793 index 19649cbecb..ab7beb1945 100644 --- a/tests/bugs/caf/bug2793 +++ b/tests/bugs/caf/bug2793 @@ -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" diff --git a/tests/bugs/step/bug24024 b/tests/bugs/step/bug24024 index bdbfbd7dab..9fc0c12b9a 100644 --- a/tests/bugs/step/bug24024 +++ b/tests/bugs/step/bug24024 @@ -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"