diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-08 19:36:31 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:45 +0000 |
commit | 9a88ba7802645a6d3637aeec08d227d5659ea70a (patch) | |
tree | 72f56f045325b6ee130114f39220b13d5d2db760 | |
parent | 2f4ea332deec7ee6bcb05bda7f60ba058ae0a908 (diff) |
gnu: go-github-com-fsnotify-fsnotify: Skip one test.
* gnu/packages/golang-xyz.scm (go-github-com-fsnotify-fsnotify)
[arguments] <test-flags>: Skip one failing test.
Change-Id: I978b5987e29953c228f6bf187d547cb1beebe939
-rw-r--r-- | gnu/packages/golang-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c8dd5015d6..ffc8e9acce 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -4801,7 +4801,8 @@ quoting, commenting, and escaping.") (build-system go-build-system) (arguments (list - #:import-path "github.com/fsnotify/fsnotify")) + #:import-path "github.com/fsnotify/fsnotify" + #:test-flags #~(list "-skip" "TestDiffMatch/3"))) (propagated-inputs (list go-golang-org-x-sys)) (home-page "https://github.com/fsnotify/fsnotify") |