Call stack trace using BOOST
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, We are running a boost unit test using command line (cmd). The command is: C:\> /c "D:\MyExecutable.exe" --run_test=testcase1,testcase2,testcase3, --report_format=xml --report_level=detailed --log_format=xml --log_level=all >test_log.xml 2>test_report.xml The output format is in XML. I would like to have the call stack for the failed test cases. Is it possible to write the call stack trace in test_report.xml or test_log.xml ? Is there any macro or Boost API can help me achieve this?