mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
32 lines
807 B
Plaintext
32 lines
807 B
Plaintext
puts "================"
|
|
puts "OCC1723"
|
|
puts "OCC2707"
|
|
puts "OCC6143"
|
|
puts "OCC12131"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################################
|
|
# OSD::SetSignal : not all FLT exceptions are catched
|
|
# Various improvements of RINA LH3D-3H project
|
|
# Correct handling of exceptions on WNT
|
|
#######################################################################################
|
|
|
|
pload QAcommands
|
|
|
|
set BugNumber OCC6143
|
|
|
|
set OK_string "TestExcept: Successfull completion\n"
|
|
set IsDone [catch {set aResult [OCC6143]} result]
|
|
|
|
if { ${IsDone} != 0 } {
|
|
puts "result = ${result}"
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
if { [string first ${OK_string} ${aResult} ] != -1 } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
}
|
|
|