aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/test/llstring_tut.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/test/llstring_tut.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/linden/indra/test/llstring_tut.cpp b/linden/indra/test/llstring_tut.cpp
index ba6ac7c..a0fbfd1 100644
--- a/linden/indra/test/llstring_tut.cpp
+++ b/linden/indra/test/llstring_tut.cpp
@@ -344,13 +344,8 @@ namespace tut
344 str_val = "0"; 344 str_val = "0";
345 ensure("2: convertToU32 failed", LLStringUtil::convertToU32(str_val, value) && value == 0); 345 ensure("2: convertToU32 failed", LLStringUtil::convertToU32(str_val, value) && value == 0);
346 346
347#ifndef LL_DARWIN
348 str_val = "-1";
349 ensure("3: convertToU32 failed", LLStringUtil::convertToU32(str_val, value) && value == 4294967295UL);
350#endif
351
352 str_val = "4294967296"; 347 str_val = "4294967296";
353 ensure("4: convertToU32 failed", !LLStringUtil::convertToU32(str_val, value)); 348 ensure("3: convertToU32 failed", !LLStringUtil::convertToU32(str_val, value));
354 } 349 }
355 350
356 template<> template<> 351 template<> template<>