mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Unstable test cases were reviewed Modified test cases using checktrend command Modified test cases for Linux platform Modified test cases for Debug mode
34 lines
977 B
Plaintext
Executable File
34 lines
977 B
Plaintext
Executable File
puts "TODO OCC12345 Debian60-64: An exception was caught"
|
|
puts "TODO OCC12345 Debian60-64: Faulty OCC1138 : here is reading problem when the filename is a directory name."
|
|
puts "TODO OCC12345 Debian60-64: Faulty OCC1138"
|
|
|
|
puts "================"
|
|
puts "OCC1138"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################################
|
|
# OSD_SIGSEGV is thrown during call LDOMParser.parse method
|
|
#######################################################################################
|
|
|
|
pload QAcommands
|
|
|
|
set BugNumber OCC1138
|
|
|
|
set status 0
|
|
decho off
|
|
if [catch { OCC983 ${imagedir} } result] {
|
|
decho on
|
|
puts "Faulty ${BugNumber} : here is reading problem when the filename is a directory name."
|
|
set status 1
|
|
} else {
|
|
puts "Reading ${BugNumber} OK : here is not reading problem when the filename is a directory name."
|
|
}
|
|
|
|
# Resume
|
|
puts ""
|
|
if { ${status} != 0 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|