mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Command checkplatform was created. All test cases were updated. Global variable os_type was eliminated. New option -osx (MacOS) for procedure checkplatform was added.
61 lines
1.3 KiB
Plaintext
Executable File
61 lines
1.3 KiB
Plaintext
Executable File
puts "============"
|
|
puts "OCC25019"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## Command "bsection" in Test Harness with flag build pcurve on second shape works slowly.
|
|
###############################
|
|
|
|
restore [locate_data_file bug25019_a_shape_1.brep] a1
|
|
restore [locate_data_file bug25019_prism.brep] p1
|
|
|
|
# 1.
|
|
dchrono h1 reset
|
|
dchrono h1 start
|
|
|
|
bsection r a1 p1 -n2d2
|
|
|
|
dchrono h1 stop
|
|
set q1 [dchrono h1 show]
|
|
|
|
# 2.
|
|
dchrono h2 reset
|
|
dchrono h2 start
|
|
|
|
bsection r a1 p1
|
|
|
|
dchrono h2 stop
|
|
set q2 [dchrono h2 show]
|
|
|
|
#
|
|
regexp {CPU user time: ([-0-9.+eE]+) seconds} $q1 full t1
|
|
puts "$t1"
|
|
if { [checkplatform -windows] } {
|
|
puts "OS = Windows NT"
|
|
set max_time1 20
|
|
} else {
|
|
puts "OS = Linux"
|
|
set max_time1 30
|
|
}
|
|
if { $t1 > ${max_time1} } {
|
|
puts "Elapsed time is more than ${max_time1} seconds - Faulty"
|
|
} else {
|
|
puts "Elapsed time is less than ${max_time1} seconds - OK"
|
|
}
|
|
|
|
#
|
|
regexp {CPU user time: ([-0-9.+eE]+) seconds} $q2 full t2
|
|
puts "$t2"
|
|
if { [checkplatform -windows] } {
|
|
puts "OS = Windows NT"
|
|
set max_time2 20
|
|
} else {
|
|
puts "OS = Linux"
|
|
set max_time2 30
|
|
}
|
|
if { $t2 > ${max_time2} } {
|
|
puts "Elapsed time is more than ${max_time2} seconds - Faulty"
|
|
} else {
|
|
puts "Elapsed time is less than ${max_time2} seconds - OK"
|
|
}
|