mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
24 lines
675 B
Plaintext
Executable File
24 lines
675 B
Plaintext
Executable File
puts "======="
|
|
puts "OCC816"
|
|
puts "======="
|
|
puts ""
|
|
########################################################
|
|
## Fail occur during reading iges file that stored in brep mode. It is happens on
|
|
## torus-apple and torus-lemon files (standard files in DE xloop nonregression test).
|
|
########################################################
|
|
|
|
set file ${imagedir}/OCC816.stp
|
|
|
|
restore [locate_data_file OCC816-lemon.rle] result
|
|
|
|
if [ catch { brepiges result $file } res ] {
|
|
puts "Faulty OCC816 : brepiges not complete"
|
|
}
|
|
|
|
if [ catch { igesbrep $file a *} res ] {
|
|
puts "Faulty OCC816 : igesbrep not complete"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|