mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Call to locate_data_file moved from catch statement in test scripts to ensure that missing data file is correctly reported as SKIPPED status of the test. TODO statements with single word 'Exception' made bit more specific ("**" added). Test bugs/caf/buc60846 removed as it is aimed to test inexistent component (Sketcher). TODO removed in test bugs/fclasses/bug22611 -- the missing command must be added or test removed. Test bugs/step/bug133_4 removed as duplicate of bugs/step/bug133_2. Command vinit added in test bugs/vis/bug23226 to ensure that viewer is properly initialized before command vvbo, and relevant TODO statements removed. Redundant FAILED patterns removed in parse.rules in groups perf and v3d as they break appropriate handling of missing data files. Added QA command OCC22611 to improve test case bugs/fclasses/bug22611. Modified test case buc60898 (shape was renamed) and moved to folder moddata_3 to avoid checkshape in end file. Test case vis/bug23226 was modified using function checkcolor.
84 lines
2.1 KiB
Plaintext
Executable File
84 lines
2.1 KiB
Plaintext
Executable File
puts "TODO ?OCC11111 ALL: An exception was caught"
|
|
puts "TODO ?OCC11111 ALL: \\*\\* Exception"
|
|
puts "TODO ?OCC11111 ALL: Faulty OCC165"
|
|
puts "TODO ?OCC11111 ALL: Error : The length of result shape is"
|
|
|
|
cpulimit 600
|
|
|
|
puts "========"
|
|
puts "OCC165"
|
|
puts "========"
|
|
puts "Bug regression in BRepOffsetAPI_MakeOffset class (offsetting in OY direction)"
|
|
|
|
|
|
dchrono h reset
|
|
dchrono h start
|
|
|
|
restore [locate_data_file offset_wire_019.brep] a
|
|
checkshape a
|
|
|
|
mkplane f a
|
|
checkshape f
|
|
|
|
set start_stepoffset 0.2
|
|
set incr_stepoffset 0.1
|
|
set finish_stepoffset 4.9
|
|
|
|
set interval_numb [expr int ( ($finish_stepoffset - $start_stepoffset) / $incr_stepoffset ) + 1]
|
|
|
|
set IsMade 0
|
|
set IsBeginMade 0
|
|
set IsGood 1
|
|
set i 0
|
|
set resume_string ""
|
|
for {set stepoffset $start_stepoffset} {$stepoffset <= $finish_stepoffset} {set stepoffset [expr $stepoffset + $incr_stepoffset]} {
|
|
incr i
|
|
puts "i = $i"
|
|
if { [catch {mkoffset result f 1 $stepoffset } catch_result] } {
|
|
puts "Faulty OCC165 (stepoffset = $stepoffset) : function MKOFFSET works wrongly"
|
|
set IsGood 0
|
|
set IsMade 0
|
|
} else {
|
|
puts "OK OCC165 (stepoffset = $stepoffset)"
|
|
set IsMade 1
|
|
}
|
|
if {$IsBeginMade == 0 && $IsMade == 1} {
|
|
set IsBeginMade 1
|
|
set BeginStepOffset $stepoffset
|
|
}
|
|
if {$IsMade == 1} {
|
|
set FinishStepOffset $stepoffset
|
|
}
|
|
|
|
dchrono h show
|
|
|
|
if {$IsBeginMade == 1 && ($IsMade == 0 || $i == $interval_numb) } {
|
|
set IsBeginMade 0
|
|
set resume_tmp "from [format "%0.2f" $BeginStepOffset] till [format "%0.2f" $FinishStepOffset]\n"
|
|
set resume_string "${resume_string}${resume_tmp}"
|
|
}
|
|
}
|
|
|
|
puts ""
|
|
if {[string length $resume_string] == 0} {
|
|
puts "Offset is created wrongly on initial shape in following borders"
|
|
puts "from [format "%0.2f" $start_stepoffset] till [format "%0.2f" $finish_stepoffset]"
|
|
} else {
|
|
puts "Offset is created correctly on initial shape in following borders"
|
|
puts "$resume_string"
|
|
}
|
|
|
|
if {$IsGood == 1} {
|
|
puts "OCC165 OK"
|
|
} else {
|
|
puts "Faulty OCC165"
|
|
}
|
|
|
|
renamevar result_1 result
|
|
|
|
set length 1112.83
|
|
set 2dviewer 0
|
|
|
|
dchrono h stop
|
|
dchrono h show
|