From 9700dfead02e42a85d969d8342eebfd8daa9422d Mon Sep 17 00:00:00 2001 From: amai2012 Date: Tue, 1 Mar 2016 22:32:27 +0100 Subject: [PATCH] Testcase succeeds on Win32-VC-32bit, only 64bit needs to be fixed. --- test/testother.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testother.cpp b/test/testother.cpp index 65f3272a3..b9b84373f 100644 --- a/test/testother.cpp +++ b/test/testother.cpp @@ -5745,7 +5745,7 @@ private: check("void f(unsigned long long ull) {\n" " if (ull == 0x89504e470d0a1a0a || ull == 0x8a4d4e470d0a1a0a) ;\n" "}\n"); -#ifdef _MSC_VER +#if defined(_MSC_VER) && defined(_M_AMD64) TODO_ASSERT_EQUALS("", "[test.cpp:2] -> [test.cpp:2]: (style) Same expression on both sides of '||'.\n", errout.str()); #else ASSERT_EQUALS("", errout.str());