diff options
author | Oz Linden <oz@lindenlab.com> | 2019-03-02 11:58:11 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2019-03-02 11:58:11 -0500 |
commit | e409c0492f1b1ce63606c0b693c92cdb36dcc28b (patch) | |
tree | 1b74701425dad859b4eb8e01593af79848dc323c /indra/test/test.cpp | |
parent | fc90cad4f366c4bb85add832a2fa8137b1f120ff (diff) |
convert to an explicit USE_BUGSPLAT switch in cmake, revise LL_ERRS approach
Diffstat (limited to 'indra/test/test.cpp')
-rw-r--r-- | indra/test/test.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/indra/test/test.cpp b/indra/test/test.cpp index 125de72b79..5dabcbbc58 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -75,7 +75,10 @@ #include <fstream> -void wouldHaveCrashed(const std::string& message); +void wouldHaveCrashed(const std::string& message) +{ + tut::fail("fatal error message: " + message); +} namespace tut { @@ -506,11 +509,6 @@ void stream_groups(std::ostream& s, const char* app) } } -void wouldHaveCrashed(const std::string& message) -{ - tut::fail("fatal error message: " + message); -} - static LLTrace::ThreadRecorder* sMasterThreadRecorder = NULL; int main(int argc, char **argv) |