1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/fclasses/bug30762
kgv 7fb9d6d573 0030762: Foundation Classes - include backtrace within OSD_SIGSEGV
Standard_Failure now holds an optional stack trace dump.
Added function Standard::StackTrace() dumping backtrace to the string.
SegvHandler within OSD_signal now appends backtrace to the message
if OSD::SignalStackTraceLength() is set to non-zero value
or environment variable "CSF_DEBUG_MODE" is set for debugging.

Added auxiliary macros Standard_NOINLINE disallowing function inlining.

Command "dsetsignal" has been extended by -strackTraceLength argument
for defining stack trace length within signals redirected to C++ exceptions.
Added "ddebugtraces" command for debugging purposes (adding stack traces to all exceptions).
2020-12-17 21:17:43 +03:00

23 lines
611 B
Plaintext

puts "================"
puts "0030762: Foundation Classes - include backtrace within OSD_SIGSEGV on Linux"
puts "================"
puts ""
pload QAcommands
dsetsignal set -strackTraceLength 10
set IsDone [catch {set aResult [OCC30762]} result]
if { ${IsDone} != 0 } {
puts "result = ${result}"
puts "Error: command raised exception"
} else {
if { [string first "testMethod3" $aResult] != -1 } {
puts "OK test case"
} else {
# stack trace might be missing due to stripped symbols or optimized code
#puts "Error: backtrace is not printed"
puts "Warning: backtrace is not printed"
}
}