File: disable-cpuinfotest.patch

package info (click to toggle)
gromacs 2025.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 287,200 kB
  • sloc: xml: 3,718,478; cpp: 654,741; ansic: 75,282; python: 20,471; sh: 3,470; perl: 2,218; yacc: 644; fortran: 397; lisp: 265; makefile: 171; lex: 125; awk: 68; csh: 39
file content (27 lines) | stat: -rw-r--r-- 898 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Description: Disable CpuInfoTest.SupportLevel test
 This test is still a hard failure on less common architectures instead of
 a warning.  Disable on those archs, as it should not fail the build.
Author: Nicholas Breen
Bug: https://gitlab.com/gromacs/gromacs/-/issues/1987
Last-Update: 2021-08-20

Index: gromacs/src/gromacs/hardware/tests/cpuinfo.cpp
===================================================================
--- gromacs.orig/src/gromacs/hardware/tests/cpuinfo.cpp
+++ gromacs/src/gromacs/hardware/tests/cpuinfo.cpp
@@ -57,6 +57,7 @@ namespace test
 namespace
 {
 
+#if !defined(__mips__) && !defined(__sparc__) && !defined(__loongarch__)
 TEST(CpuInfoTest, SupportLevel)
 {
     // There is no way we can compare to any reference data since that
@@ -95,6 +96,7 @@ TEST(CpuInfoTest, SupportLevel)
         }
     }
 }
+#endif // architecture check
 
 } // namespace
 } // namespace test