Testcase succeeds on Win32-VC-32bit, only 64bit needs to be fixed.

This commit is contained in:
amai2012 2016-03-01 22:32:27 +01:00
parent 253bfe432c
commit 9700dfead0
1 changed files with 1 additions and 1 deletions

View File

@ -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());