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.
21 lines
422 B
Plaintext
Executable File
21 lines
422 B
Plaintext
Executable File
# Incompleted behavior of test case is OK.
|
|
# Exception should be thrown.
|
|
|
|
puts "TODO OCC11111 ALL: An exception was caught"
|
|
|
|
pload QAcommands
|
|
|
|
puts "============"
|
|
puts "0002569: If it is not possible to create the bezier curve, it should throw an e x c e p t i o n."
|
|
puts "============"
|
|
puts ""
|
|
|
|
cpulimit 60
|
|
vinit
|
|
|
|
if { [catch {OCC2569 29 result} anException] } {
|
|
puts "OCC2569 : OK"
|
|
} else {
|
|
puts "Error : OCC2569"
|
|
}
|