Fix test failure on 32bit platform (#5803)

This commit is contained in:
chrchr-github 2023-12-23 20:59:59 +01:00 committed by GitHub
parent 06e6c3eba4
commit 9118d330d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2173,6 +2173,7 @@ private:
"}\n");
ASSERT_EQUALS("[test.cpp:1]: (performance) Function parameter 't' should be passed by const reference.\n", errout.str());
Settings settings0 = settingsBuilder(_settings).platform(Platform::Type::Unix64).build();
check("struct S {\n" // #12138
" union {\n"
" int a = 0;\n"
@ -2189,7 +2190,7 @@ private:
"};\n"
"void f(S s) {\n"
" if (s.x > s.y) {}\n"
"}\n");
"}\n", /*filename*/ nullptr, /*inconclusive*/ true, /*runSimpleChecks*/ true, /*verbose*/ false, &settings0);
ASSERT_EQUALS("", errout.str());
check("struct S { std::list<int> l; };\n" // #12147