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
34 lines
771 B
Plaintext
Executable File
34 lines
771 B
Plaintext
Executable File
puts "========================"
|
|
puts "OCC22833"
|
|
puts "========================"
|
|
puts ""
|
|
#######################################################################
|
|
# Command "checkshape" in DRAWEXE give error "Self intersection wire" on attached shape
|
|
#######################################################################
|
|
|
|
set BugNumber OCC22833
|
|
|
|
restore [locate_data_file OCC22833-bugInt.brep] result
|
|
|
|
set text [checkshape result f]
|
|
set last1 [lindex $text end]
|
|
set last2 [lindex $text end-1]
|
|
|
|
set status 0
|
|
set s1 "OK"
|
|
set s2 "looks"
|
|
|
|
if { [string equal $last1 $s1] && [string equal $last2 $s2] } {
|
|
set status 0
|
|
} else {
|
|
set status 1 }
|
|
|
|
if { ${status} != 0 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|
|
set square 63427.2
|
|
set 3dviewer 1
|