sharlatan pushed a commit to branch master
in repository guix.

commit 16cf2fea8d0592eeafaed8b9fa4861a9e7f54ad1
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Thu Jun 20 08:06:22 2024 +0100

    gnu: go-golang-org-x-sync: Enable tests.
    
    * gnu/packages/golang-build.scm (go-golang-org-x-sync): Refresh package 
style.
    [arguments]: <#:phases>: Add custom 'check phase.
    
    Change-Id: Ibee36b53934faed80561d461090cfcfea32b5bfa
---
 gnu/packages/golang-build.scm | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index d8dcde3759..62192cd96d 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -281,11 +281,18 @@ loading algorithms.")
           (base32 "07qrhni6f5hh5p95k1yk6s4wsj341q663irvx6rllrxfsymj6a0z"))))
       (build-system go-build-system)
       (arguments
-       `(#:import-path "golang.org/x/sync"
-         #:tests? #f
-         ;; Source-only package
-         #:phases (modify-phases %standard-phases
-                    (delete 'build))))
+       (list
+        #:import-path "golang.org/x/sync"
+        #:phases
+        #~(modify-phases %standard-phases
+            ;; XXX: Workaround for go-build-system's lack of Go modules
+            ;; support.
+            (delete 'build)
+            (replace 'check
+              (lambda* (#:key tests? import-path #:allow-other-keys)
+                (when tests?
+                  (with-directory-excursion (string-append "src/" import-path)
+                    (invoke "go" "test" "-v" "./..."))))))))
       (home-page "https://go.googlesource.com/sync/";)
       (synopsis "Additional Go concurrency primitives")
       (description "This package provides Go concurrency primitives in

Reply via email to