From 2760c7902a5cc7173aabe4e1f31dcf93e79377d5 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Wed, 10 Jun 2015 21:22:24 -0500 Subject: [PATCH] fix #290 --- src/test_lib_json/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test_lib_json/main.cpp b/src/test_lib_json/main.cpp index 85110ad..080ba6e 100644 --- a/src/test_lib_json/main.cpp +++ b/src/test_lib_json/main.cpp @@ -296,7 +296,10 @@ JSONTEST_FIXTURE(ValueTest, null) { JSONTEST_ASSERT_EQUAL(0.0, null_.asFloat()); JSONTEST_ASSERT_STRING_EQUAL("", null_.asString()); +#if !defined(__ARMEL__) + // See line #165 of include/json/value.h JSONTEST_ASSERT_EQUAL(Json::Value::null, null_); +#endif } JSONTEST_FIXTURE(ValueTest, strings) {