diff options
author | Rye <rye@lindenlab.com> | 2024-11-01 18:29:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-01 18:29:05 -0400 |
commit | 43196292307b24dafa186ec6f869168d1cc389c9 (patch) | |
tree | b29c1b32ecafaeec2f11ebbd3ce9932c00fd1042 /indra/test | |
parent | d0e0a93debdd43335a29b7d383fe7e0142834aee (diff) | |
parent | 3a052bd261e5f23d8dbb8aaeb32c131d250d39a9 (diff) |
Merge pull request #2855 from secondlife/rye/buildtests
Reduce build time on all three platforms and introduce linux tests
Diffstat (limited to 'indra/test')
-rw-r--r-- | indra/test/lltut.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/test/lltut.h b/indra/test/lltut.h index 986bdd0619..1e380a3f5e 100644 --- a/indra/test/lltut.h +++ b/indra/test/lltut.h @@ -128,7 +128,7 @@ namespace tut inline void ensure_memory_matches(const void* actual, U32 actual_len, const void* expected,U32 expected_len) { - ensure_memory_matches(NULL, actual, actual_len, expected, expected_len); + ensure_memory_matches("", actual, actual_len, expected, expected_len); } template <class T,class Q> |