diff options
| author | Dariqq <dariqq@posteo.net> | 2026-01-18 08:38:31 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-02-20 22:34:56 +0100 |
| commit | 3e9338b923912773db46277e98e14462d4a3fb34 (patch) | |
| tree | 7cc2b61e9ee0b0d39b51208dae158e68d338ce5b /gnu/packages/graphics.scm | |
| parent | aa69f0f3e87c22904f3f65b77ebbcb957b546d8f (diff) | |
gnu: Use (target-32bit?) to test for 32bit targets.
* gnu/packages/*.scm: Replace usage of target-64bit? when actually testing for
32bit targets.
* guix/utils.scm (target-hurd32?). Same.
Change-Id: If3ed2b82a1229b72b07fafc694eedc14080e5a04
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Merges: #5710
Diffstat (limited to 'gnu/packages/graphics.scm')
| -rw-r--r-- | gnu/packages/graphics.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index e2a9920fe2c..47b1aadf363 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm | |||
| @@ -1576,8 +1576,7 @@ graphics.") | |||
| 1576 | "src/test/OpenEXRCoreTest/main.cpp") | 1576 | "src/test/OpenEXRCoreTest/main.cpp") |
| 1577 | (("/var/tmp") | 1577 | (("/var/tmp") |
| 1578 | "/tmp")))) | 1578 | "/tmp")))) |
| 1579 | #$@(if (target-64bit?) | 1579 | #$@(if (target-32bit?) |
| 1580 | #~() | ||
| 1581 | #~((add-after 'patch-test-directory 'disable-broken-tests | 1580 | #~((add-after 'patch-test-directory 'disable-broken-tests |
| 1582 | (lambda _ | 1581 | (lambda _ |
| 1583 | ;; Disable tests that fail at least on i686-linux. | 1582 | ;; Disable tests that fail at least on i686-linux. |
| @@ -1598,7 +1597,8 @@ graphics.") | |||
| 1598 | (("TEST\\( testB44ACompression, \"core_compression\" \\);") | 1597 | (("TEST\\( testB44ACompression, \"core_compression\" \\);") |
| 1599 | "") | 1598 | "") |
| 1600 | (("TEST \\(testOptimizedInterleavePatterns, \"basic\"\\);") | 1599 | (("TEST \\(testOptimizedInterleavePatterns, \"basic\"\\);") |
| 1601 | "")))))) | 1600 | ""))))) |
| 1601 | #~()) | ||
| 1602 | #$@(if (target-aarch64?) | 1602 | #$@(if (target-aarch64?) |
| 1603 | #~((add-after 'patch-test-directory 'disable-broken-aarch64-tests | 1603 | #~((add-after 'patch-test-directory 'disable-broken-aarch64-tests |
| 1604 | ;; Disable tests known to fail on aarch64. Remove once | 1604 | ;; Disable tests known to fail on aarch64. Remove once |
| @@ -1657,7 +1657,7 @@ with strong support for multi-part, multi-channel use cases.") | |||
| 1657 | all | 1657 | all |
| 1658 | "set_tests_properties(OpenEXR.IlmImf PROPERTIES TIMEOUT 15000)"))) | 1658 | "set_tests_properties(OpenEXR.IlmImf PROPERTIES TIMEOUT 15000)"))) |
| 1659 | #t)) | 1659 | #t)) |
| 1660 | ,@(if (not (target-64bit?)) | 1660 | ,@(if (target-32bit?) |
| 1661 | `((add-after 'change-directory 'disable-broken-test | 1661 | `((add-after 'change-directory 'disable-broken-test |
| 1662 | (lambda _ | 1662 | (lambda _ |
| 1663 | (substitute* "IlmImfTest/main.cpp" | 1663 | (substitute* "IlmImfTest/main.cpp" |
