mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: stress-ng: Update to 0.18.04.
* gnu/packages/admin.scm (stress-ng): Update to 0.18.04. [arguments]: Skip more broken tests. Change-Id: Idd1d63e4b24304f5d97d50d7385bf64193fc43c1
This commit is contained in:
parent
278cce9f61
commit
bf6138e9ac
1 changed files with 16 additions and 7 deletions
|
@ -2604,7 +2604,7 @@ (define-public stress
|
|||
(define-public stress-ng
|
||||
(package
|
||||
(name "stress-ng")
|
||||
(version "0.13.10")
|
||||
(version "0.18.04")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -2613,12 +2613,12 @@ (define-public stress-ng
|
|||
(commit (string-append "V" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1z9vjn2131iv3pwrh04z6r5ygi1qgad5bi3jhghcvc3v1b4k5ran"))))
|
||||
(base32 "100w4qkrzpg7jjl4dw0c376xi811qnjmlbffiy43i945f9vl3dc7"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; XXX The test suite seems to cause instability on the VisionFive 2
|
||||
;; build machines, maybe it's stressing them as intended but this is
|
||||
;; unhelpful
|
||||
;; unhelpful.
|
||||
(list #:tests? (not (target-riscv64?))
|
||||
#:make-flags
|
||||
#~(list (string-append "CC=" #$(cc-for-target))
|
||||
|
@ -2638,10 +2638,19 @@ (define-public stress-ng
|
|||
(lambda* (#:key tests? #:allow-other-keys #:rest args)
|
||||
(when tests?
|
||||
(substitute* "debian/tests/fast-test-all"
|
||||
(("EXCLUDE=\"" exclude=)
|
||||
(string-append exclude=
|
||||
;; Fails if host kernel denies ptracing.
|
||||
"ptrace ")))
|
||||
(("^EXCLUDE=\"" exclude=)
|
||||
(string-append
|
||||
exclude=
|
||||
(string-join
|
||||
'("fpunch" ;fails for reasons not investigated
|
||||
"prio-inv" ;requires elevated privileges
|
||||
"ptrace") ;fails if host kernel denies ptracing
|
||||
" ") " "))
|
||||
;; There's a commented list of ‘tests that can lock up
|
||||
;; some kernels or are CPU/arch specific’. Uncomment it.
|
||||
(("#(EXCLUDE=)" _ uncomment) uncomment)
|
||||
;; Make it so that both lists are appended, with spaces.
|
||||
(("EXCLUDE=\"") "EXCLUDE+=\" "))
|
||||
(apply (assoc-ref %standard-phases 'check)
|
||||
`(,@args #:test-target "fast-test-all"))))))))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue