summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/tests/test_httpstatus.hpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2016-12-20 11:14:51 -0500
committerOz Linden <oz@lindenlab.com>2016-12-20 11:14:51 -0500
commit498ffa1acee1b59e8e2e1e57a3e1640f7b368168 (patch)
tree122e1cb7a553904bf9a36558c26010507738a878 /indra/llcorehttp/tests/test_httpstatus.hpp
parent17ca7fc38d7abebd009396d6a2ad22edc3ed7836 (diff)
parentfd79bb9c7dbd0180f6dd3711450083ea2020e93f (diff)
merge changes from project trunk
Diffstat (limited to 'indra/llcorehttp/tests/test_httpstatus.hpp')
-rw-r--r--indra/llcorehttp/tests/test_httpstatus.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/llcorehttp/tests/test_httpstatus.hpp b/indra/llcorehttp/tests/test_httpstatus.hpp
index 4502d32fe1..10cda799e7 100644
--- a/indra/llcorehttp/tests/test_httpstatus.hpp
+++ b/indra/llcorehttp/tests/test_httpstatus.hpp
@@ -244,7 +244,11 @@ void HttpStatusTestObjectType::test<7>()
HttpStatus status(404);
std::string msg = status.toHex();
// std::cout << "Result: " << msg << std::endl;
- ensure(msg == "01940001");
+#if ADDRESS_SIZE == 32
+ ensure_equals(msg, "01940001");
+#else
+ ensure_equals(msg, "19400000001");
+#endif
}