mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
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).
23 lines
611 B
Plaintext
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"
|
|
}
|
|
}
|