diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-07 09:05:02 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-07 09:49:41 +0000 |
commit | 6292cac30fd0515b25ada7a3099eccecdd48d88e (patch) | |
tree | d59731593d826fe582439d4a874d71f48721b6ba /gnu/packages/golang-web.scm | |
parent | c2e2ed8b1a124c45290cb6eb6aa476130eace40c (diff) |
gnu: go-github-com-xtaci-lossyconn: Disable tests.
As seen in <https://ci.guix.gnu.org/build/9029279/log/raw>, goroutine
fail when number of threads are more than 16.
* gnu/packages/golang-web.scm (go-github-com-xtaci-lossyconn)
[arguments] <tests?>: Disable them.
<parallel-tests?>: Likewise.
Change-Id: Ic66c0ef4659e2351786f4b97df045544cd0d22f1
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 4ac18ed019..74d9eafcc4 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -8358,6 +8358,10 @@ version with various improvements (build-system go-build-system) (arguments (list + ;; XXX: In CI with 16+ threads goroutines fail. Figure out how to detect + ;; CI enviroment. + #:tests? #f + #:parallel-tests? #f #:import-path "github.com/xtaci/lossyconn")) (home-page "https://github.com/xtaci/lossyconn") (synopsis "Lossy connection simulator") |