mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Unstable test cases were reviewed Modified test cases using checktrend command Modified test cases for Linux platform Modified test cases for Debug mode
23 lines
559 B
Plaintext
Executable File
23 lines
559 B
Plaintext
Executable File
puts "======="
|
|
puts "OCC700"
|
|
puts "======="
|
|
puts ""
|
|
##########################################################
|
|
## The attached file calnnot be read with OCC4.0, while read successfully with OCC3.0
|
|
##########################################################
|
|
|
|
set filepath [locate_data_file OCC700.igs]
|
|
if [ catch {igesbrep $filepath} res ] {
|
|
puts "Faulty OCC700"
|
|
} else {
|
|
set index [lsearch $res Faulty]
|
|
set index1 [lsearch $res error.]
|
|
if {$index > -1 || $index1 > -1} {
|
|
puts "Faulty OCC700"
|
|
} else {
|
|
puts "OCC700 OK"
|
|
}
|
|
}
|
|
|
|
|