mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Draw_Interpretor, CommandCmd() - catched exceptions and messages put into Tcl string result before throwing a Tcl exception (return 1) are now print in intense red (using Message::SendFail()). Duplication of exception message in std::cout and Tcl output has been removed. Draw Harness plugins have been updated to use either Message::SendFail() or theDI instead of std::cout/std::cerr for printing colored error message before throwing a Tcl exception.
25 lines
608 B
Plaintext
Executable File
25 lines
608 B
Plaintext
Executable File
puts "TODO OCC11111 ALL: An exception was caught"
|
|
puts "TODO OCC11111 ALL: Faulty OCC22910"
|
|
puts "TODO OCC11111 ALL: Error: The command cannot be built"
|
|
|
|
puts "================"
|
|
puts "0022910: F a i l u r e to compute iso-line for NURBS surface"
|
|
puts "================"
|
|
puts ""
|
|
|
|
set BugNumber OCC22910
|
|
|
|
catch { pload MODELING }
|
|
|
|
restore [locate_data_file s.rle] res
|
|
set exception_status [ catch { uiso u res 0.5 } ]
|
|
|
|
if { ${exception_status} == 0 } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
|
|
checkprops result -s 0
|
|
checkview -display result -3d -path ${imagedir}/${test_image}.png
|