summaryrefslogtreecommitdiff
path: root/indra/test
diff options
context:
space:
mode:
authornat-goodspeed <nat@lindenlab.com>2023-07-18 18:15:56 +0300
committerGitHub <noreply@github.com>2023-07-18 18:15:56 +0300
commit64a0911eeff765e43e634b7bad857a26cc931ce0 (patch)
tree6019f8ead7a11f745380c83d1967d2136a347177 /indra/test
parent4c848c8258aa0f8a29aed0bebf9cdbcf32a2c96f (diff)
parent3b46c892719ced98cdb3265801cd5f62353b3ced (diff)
Merge pull request #280 from secondlife/dispatch-maint-v2
Major improvements to LLLeap functionality
Diffstat (limited to 'indra/test')
-rw-r--r--indra/test/CMakeLists.txt7
-rw-r--r--indra/test/test.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/indra/test/CMakeLists.txt b/indra/test/CMakeLists.txt
index b7a39a7450..4a0a8716c4 100644
--- a/indra/test/CMakeLists.txt
+++ b/indra/test/CMakeLists.txt
@@ -74,6 +74,13 @@ if (WINDOWS)
LINK_FLAGS "/NODEFAULTLIB:LIBCMT"
LINK_FLAGS_DEBUG "/NODEFAULTLIB:\"LIBCMT;LIBCMTD;MSVCRT\""
)
+elseif (DARWIN)
+ # Support our "@executable_path/../Resources" load path for our test
+ # executable. This SHOULD properly be "$<TARGET_FILE_DIR:lltest>/Resources",
+ # but the CMake $<TARGET_FILE_DIR> generator expression isn't evaluated by
+ # CREATE_LINK, so fudge it.
+ file(CREATE_LINK "../sharedlibs/Release/Resources" "${CMAKE_BINARY_DIR}/test/Resources"
+ SYMBOLIC)
endif (WINDOWS)
set(TEST_EXE $<TARGET_FILE:lltest>)
diff --git a/indra/test/test.cpp b/indra/test/test.cpp
index bb48216b2b..1161a6d8e4 100644
--- a/indra/test/test.cpp
+++ b/indra/test/test.cpp
@@ -259,7 +259,7 @@ public:
break;
case tut::test_result::ex:
++mFailedTests;
- out << "exception: " << tr.exception_typeid;
+ out << "exception: " << LLError::Log::demangle(tr.exception_typeid.c_str());
break;
case tut::test_result::warn:
++mFailedTests;