File: 0002-Skip-test-fails-on-reproducible-builds.patch

package info (click to toggle)
golang-go.crypto 1%3A0.45.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 8,512 kB
  • sloc: asm: 22,954; ansic: 258; sh: 25; makefile: 11
file content (22 lines) | stat: -rw-r--r-- 624 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Roger Shimizu <rosh@debian.org>
Date: Thu, 25 Jun 2020 02:44:22 +0900
Subject: Skip test fails on reproducible builds

Reported upstream:
- https://github.com/golang/go/issues/39831
- https://github.com/golang/go/issues/39910
---
 openpgp/clearsign/clearsign_test.go | 1 +
 ssh/test/session_test.go            | 1 +
 2 files changed, 2 insertions(+)

--- a/openpgp/clearsign/clearsign_test.go
+++ b/openpgp/clearsign/clearsign_test.go
@@ -135,6 +135,7 @@
 }
 
 func TestMultiSign(t *testing.T) {
+	t.Skip()	// This fails on reproducible builds
 	if testing.Short() {
 		t.Skip("skipping long test in -short mode")
 	}