diff options
| author | Carlos Durán Domínguez <wurt@wurt.eu> | 2026-02-24 01:36:36 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-25 14:29:59 +0000 |
| commit | 3546df0c32ccfb57d9ab03d4c2c527d46383b1a5 (patch) | |
| tree | 6b311e97d041d920ed3b4a4a00d0d0d76a02850f /gnu | |
| parent | 49d9a37d3ce5a59f7cb824462605cb10f5ae1b37 (diff) | |
gnu: go-modernc-org-cc-v4: Fix tests.
* gnu/packages/golang-xyz.scm (go-modernc-org-cc-v4): Fix tests.
[arguments]: <#:test-flags>: Add -short flag.
Change-Id: I874ef03d29dd2d1571c190f1f5e04080dd7ecbfb
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 693b28ef751..1d46f2177e3 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -29155,9 +29155,12 @@ Program Argument Syntax Conventions}.") ;; bits/math-vector.h since glibc 2.38. ;; See <https://gitlab.com/cznic/cc/-/issues/155>. #:test-flags - (if (target-aarch64?) - #~(list "-skip" "TestParse|TestTranslate|TestMake") - #~'()) + #~(list + #$@(if (target-aarch64?) + #~("-skip" "TestParse|TestTranslate|TestMake") + #~()) + ;; There are too many tests, so it may take more than 10 minutes. + "-short") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'copy-source-assets |
