mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Splitting of subgroups bugs/modalg and bugs/moddata to optimise time of testing Correction of end file in group v3d Small correction of test case
37 lines
1.0 KiB
Plaintext
Executable File
37 lines
1.0 KiB
Plaintext
Executable File
puts "========================"
|
|
puts " OCC317 "
|
|
puts "========================"
|
|
puts ""
|
|
##################################################
|
|
## A Solid "so" is valid, whereas wire "so_5" from the solid is not valid.
|
|
##################################################
|
|
|
|
restore [locate_data_file OCC317.brep] result
|
|
|
|
set che [checkshape result]
|
|
if { [regexp {Faulty} $che] == 1} {
|
|
puts "Faulty OCC317: Source shape is invalid. It was detected by Checkshape command"
|
|
puts "Body of the script was NOT executed"
|
|
} else {
|
|
puts "OCC317 OK: Source shape is valid"
|
|
explode result w
|
|
|
|
set che [checkshape result_5]
|
|
if { [regexp {Faulty} $che] == 1} {
|
|
puts "Faulty OCC317: Wire is invalid. It was detected by Checkshape command"
|
|
} else {
|
|
puts "OCC317 OK : Wire is valid."
|
|
}
|
|
|
|
set che [checkshape result r]
|
|
if { [regexp {OK} $che] != 1 } {
|
|
puts "Faulty OCC317: Wire is invalid. It was detected by Checkshape command"
|
|
} else {
|
|
puts "OCC317 OK : Wire is valid."
|
|
}
|
|
}
|
|
|
|
set square 2104.21
|
|
set 2dviewer 0
|
|
|