summaryrefslogtreecommitdiff
path: root/dev-util/cppcheck/files/cppcheck-2.13.0-32-bit-tests.patch
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-12-30 22:50:23 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-12-31 10:07:45 +0100
commita7cb73a1dbd527098483cc531c13f2de2810b35e (patch)
tree2a07865e8e7a34da3a5b7c11ecc5d38a02252b10 /dev-util/cppcheck/files/cppcheck-2.13.0-32-bit-tests.patch
parent81a2ab4f87b32de348c9e797245e8c323bd24fd4 (diff)
downloadgentoo-a7cb73a1dbd527098483cc531c13f2de2810b35e.tar.gz
gentoo-a7cb73a1dbd527098483cc531c13f2de2810b35e.tar.bz2
gentoo-a7cb73a1dbd527098483cc531c13f2de2810b35e.zip
dev-util/cppcheck: drop 2.9, 2.13.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-util/cppcheck/files/cppcheck-2.13.0-32-bit-tests.patch')
-rw-r--r--dev-util/cppcheck/files/cppcheck-2.13.0-32-bit-tests.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-util/cppcheck/files/cppcheck-2.13.0-32-bit-tests.patch b/dev-util/cppcheck/files/cppcheck-2.13.0-32-bit-tests.patch
deleted file mode 100644
index a31a014f5968..000000000000
--- a/dev-util/cppcheck/files/cppcheck-2.13.0-32-bit-tests.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://bugs.gentoo.org/935368
-https://github.com/danmar/cppcheck/commit/9118d330d387e73a20e1bc46c65387306afa0895
-
-From 9118d330d387e73a20e1bc46c65387306afa0895 Mon Sep 17 00:00:00 2001
-From: chrchr-github <78114321+chrchr-github@users.noreply.github.com>
-Date: Sat, 23 Dec 2023 20:59:59 +0100
-Subject: [PATCH] Fix test failure on 32bit platform (#5803)
-
---- a/test/testother.cpp
-+++ b/test/testother.cpp
-@@ -2173,6 +2173,7 @@ class TestOther : public TestFixture {
- "}\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 @@ class TestOther : public TestFixture {
- "};\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
-