mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
30 lines
751 B
Plaintext
30 lines
751 B
Plaintext
puts "TODO ?OCC12345 ALL: An exception was caught"
|
|
puts "TODO ?OCC12345 ALL: \\*\\* Exception \\*\\*.*"
|
|
puts "TODO ?OCC12345 ALL: Faulty: VRML reader fails"
|
|
##puts "TODO ?OCC12345 ALL: TEST INCOMPLETE"
|
|
|
|
puts "========================"
|
|
puts "OCC23023"
|
|
puts "========================"
|
|
puts ""
|
|
#######################################################################
|
|
# VRML reader fails on attempt to read an attached WRL file
|
|
#######################################################################
|
|
|
|
set BugNumber OCC23023
|
|
pload XDE
|
|
|
|
set filepath [locate_data_file OCC23023-2056132060_2_tutnicht.wrl]
|
|
if [catch { set list [loadvrml result $filepath] } res] {
|
|
puts "Faulty: VRML reader fails"
|
|
} else {
|
|
puts "OK: VRML reader work properly"
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|