summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-10-22 16:46:12 -0400
committerOz Linden <oz@lindenlab.com>2014-10-22 16:46:12 -0400
commit25dcb53aa229cf980449416bd59e42bd265041d0 (patch)
treed0c7426810a596e2b514128cf7e7bf789231d93b /indra/llcommon
parent04291ba319a6e68f2c2e9bd8e299878b93424452 (diff)
parent60f4494dc09587e6b622e5241a5f98a5bd521f56 (diff)
merge with more fixes from callum
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-xindra/llcommon/tests/llerror_test.cpp4
-rwxr-xr-xindra/llcommon/tests/lleventcoro_test.cpp1
2 files changed, 3 insertions, 2 deletions
diff --git a/indra/llcommon/tests/llerror_test.cpp b/indra/llcommon/tests/llerror_test.cpp
index febfa782ca..1ac72d13bf 100755
--- a/indra/llcommon/tests/llerror_test.cpp
+++ b/indra/llcommon/tests/llerror_test.cpp
@@ -485,7 +485,9 @@ namespace tut
// handle nested logging
void ErrorTestObject::test<7>()
{
- skip("Fails on clang TODO");
+#if LL_DARWIN
+ skip("Skip known failure on clang and intelc due to operator << differences");
+#endif
outerLogger();
ensure_message_contains(0, "inside");
ensure_message_contains(1, "outside(moo)");
diff --git a/indra/llcommon/tests/lleventcoro_test.cpp b/indra/llcommon/tests/lleventcoro_test.cpp
index cb5e15eff2..2096807e53 100755
--- a/indra/llcommon/tests/lleventcoro_test.cpp
+++ b/indra/llcommon/tests/lleventcoro_test.cpp
@@ -94,7 +94,6 @@ using coroutines::coroutine;
template<typename Iter>
bool match(Iter first, Iter last, std::string match) {
std::string::iterator i = match.begin();
- i != match.end();
for(; (first != last) && (i != match.end()); ++i) {
if (*first != *i)
return false;