sharlatan pushed a commit to branch go-team
in repository guix.
commit 2f25d7c34d8fda641b1a84ea05154db8875bee7d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Sep 12 22:53:50 2024 +0100
gnu: go-google-golang-org-protobuf: Enable all tests
* gnu/packages/golang-build.scm (go-google-golang-org-protobuf)
[arguments]: <#:phases>: Remove 'disable-failing-tests.
Change-Id: Iaec1e3238765e20ce7caecf60cdae7bc236161fc
---
gnu/packages/golang-build.scm | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index 75eaf61b9d..11978d8524 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -868,18 +868,6 @@ values.")
#:import-path "google.golang.org/protobuf"
#:phases
#~(modify-phases %standard-phases
- (add-after 'unpack 'disable-failing-tests
- (lambda* (#:key tests? unpack-path #:allow-other-keys)
- (with-directory-excursion (string-append "src/" unpack-path)
- (substitute* (find-files "." "\\_test.go$")
- ;; XXX Failing on i686-linux:
- ;; panic: unaligned 64-bit atomic operation
- (("TestDynamicTypesExtensionNotFound")
- "OffTestDynamicTypesExtensionNotFound")
- (("TestDynamicTypesFilesChangeAfterCreation")
- "OffTestDynamicTypesFilesChangeAfterCreation")
- (("TestDynamicTypesFindExtensionByNameOrNumber")
- "OffTestDynamicTypesFindExtensionByNameOrNumber")))))
;; XXX: Workaround for go-build-system's lack of Go modules
;; support.
(delete 'build)