gnu: go-gotest-tools-v3: Update to 3.5.2.

* gnu/packages/golang-check.scm (go-gotest-tools-v3): Update to 3.5.2.
[arguments] <test-flags>: Refresh the list of skipped tests, add skip
ARM specific one.

Change-Id: I789e7ef0bf678427ca5d67b2ad4871937c146fa7
This commit is contained in:
Sharlatan Hellseher 2025-03-30 16:20:13 +01:00
parent a67617e7eb
commit 0dff26eac4
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2527,7 +2527,7 @@ built-in @code{testing} package, but can be used in other contexts too.")
(define-public go-gotest-tools-v3 (define-public go-gotest-tools-v3
(package (package
(name "go-gotest-tools-v3") (name "go-gotest-tools-v3")
(version "3.5.1") (version "3.5.2")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -2536,7 +2536,7 @@ built-in @code{testing} package, but can be used in other contexts too.")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1r5mc6slab6fj2si9nripl7fdq097s694gsn1gsxg2wj7605m5v4")) (base32 "00kv9j55sgidyya8n0m11sp8ianqy7iknyqhi1qr0ck9mq9bnj1s"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
#~(begin #~(begin
@ -2554,23 +2554,24 @@ built-in @code{testing} package, but can be used in other contexts too.")
;; Most of these failing tests can't read test file ;; Most of these failing tests can't read test file
;; maybe due to the symlink can't be resolved properly ;; maybe due to the symlink can't be resolved properly
;; or have assertion not equal. ;; or have assertion not equal.
(list "TestAssert_WithBinaryExpression_Failures" (list "TestEqual_WithGoldenUpdate"
"TestAssertWithBool.*" "TestMigrateFileReplacesTestingT"
"TestCheckFailure" "TestMigrateFileWithNamedCmpPackage"
"TestCheckEqualFailure" "TestMigrateFileWithCommentsOnAssert"
"TestCheck_MultipleFunctionsOnTheSameLine" "TestMigrateFileConvertNilToNilError"
"TestEqualFailure" "TestMigrateFileConvertAssertNew"
"TestEqualFailure.*" "TestMigrateFileWithExtraArgs"
"TestAssertFailureWithOfflineComparison" "TestMigrate_AssertAlreadyImported"
"TestErrorTypeFailure" "TestMigrate_AssertAlreadyImportedWithAlias"
"TestErrorIs" "TestWaitOnSocketWithTimeout"
"TestEqual_WithGoldenUpdate"
"TestMigrateFile.*"
"TestMigrate_AssertAlready.*"
"TestFormattedCallExprArg.*"
"TestWaitOnSocketWithTimeout/connection_to_" "TestWaitOnSocketWithTimeout/connection_to_"
"TestIfCondition" ;; poll_test.go:113: assertion failed: string
"TestIfCondition.*") ;; "timeout hit after 10ms: first check never
;; completed" does not contain "assertion failed:
;; 3 (int) != 4 (int)"
#$@(if (target-arm?)
'("TestWaitOn_WithCompare")
'()))
"|")))) "|"))))
(propagated-inputs (propagated-inputs
(list go-github-com-google-go-cmp (list go-github-com-google-go-cmp