1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
abv c381fda2d6 0027713: Test bugs fclasses bug6143 is not OK for Linux after restoring FPS (26329)
Use standard (POSIX-compliant) macro "__linux__" for identification of Linux system, instead of obsolete "linux"
2016-09-30 11:17:19 +03:00

33 lines
758 B
Plaintext

puts "TODO OCC24156 MacOS: Faulty OCC6143"
puts "================"
puts "OCC1723"
puts "OCC2707"
puts "OCC6143"
puts "OCC12131"
puts "================"
puts ""
#######################################################################################
# OSD::SetSignal : not all FLT exceptions are caught
#######################################################################################
pload QAcommands
set BugNumber OCC6143
dsetsignal 1
set IsDone [catch {set aResult [OCC6143]} result]
dsetsignal
if { ${IsDone} != 0 } {
puts "result = ${result}"
puts "Faulty ${BugNumber}"
} else {
if { [string first "TestExcept: Successfull completion" ${aResult} ] != -1 } {
puts "OK ${BugNumber}"
} else {
puts "Faulty ${BugNumber}"
}
}