Don't use stacktrace on Windows.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-08-15 14:19:36 +02:00
parent 002902eed9
commit e778b61839
3 changed files with 11 additions and 8 deletions

View File

@@ -6,14 +6,11 @@ using namespace ArbUt;
TEST_CASE("Throw exception get stack trace") {
try {
throw ArbUt::Exception("foobar");
}
catch (const ArbUt::Exception& e) {
} catch (const ArbUt::Exception& e) {
#ifndef NDEBUG
REQUIRE(e.GetStacktrace(1) ==
"ExceptionTests.cpp[8] ____C_A_T_C_H____T_E_S_T____0()\n");
REQUIRE(e.GetStacktrace(1) == "ExceptionTests.cpp[8] ____C_A_T_C_H____T_E_S_T____0()\n");
#else
REQUIRE(e.GetStacktrace(1, false) ==
"ArbutilsTests Catch::RunContext::runTest(Catch::TestCase const&)\n");
REQUIRE(e.GetStacktrace(1, false) == "ArbutilsTests Catch::RunContext::runTest(Catch::TestCase const&)\n");
#endif
}
}