File: disable-flaky-test.patch

package info (click to toggle)
golang-github-google-martian 2.1.0%2Bgit20181219.d0b5ad3-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,140 kB
  • sloc: makefile: 3
file content (17 lines) | stat: -rw-r--r-- 435 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
From: Stephen Gelman <ssgelm@debian.org>
Date: Thu, 23 Mar 2019 13:04:00 -0600
Subject: Disable flaky test

Forwarded: https://github.com/google/martian/issues/282
---
--- a/marbl/handler_test.go
+++ b/marbl/handler_test.go
@@ -27,7 +27,7 @@
 )
 
 func TestStreamsInSentOrder(t *testing.T) {
-	//t.Skip("skipping test to deflake.")
+	t.Skip("skipping test to deflake.")
 
 	l, err := net.Listen("tcp", "localhost:0")
 	if err != nil {