File: 0001-Skip-TestConnectorReturnsTimeout.patch

package info (click to toggle)
golang-github-go-sql-driver-mysql 1.9.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: makefile: 2
file content (23 lines) | stat: -rw-r--r-- 549 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Shengjing Zhu <zhsj@debian.org>
Date: Thu, 22 Feb 2024 17:25:36 +0800
Subject: Skip TestConnectorReturnsTimeout

Need access network

Forwarded: not-needed
---
 connector_test.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/connector_test.go b/connector_test.go
index 82d8c59..00d3e82 100644
--- a/connector_test.go
+++ b/connector_test.go
@@ -8,6 +8,7 @@ import (
 )
 
 func TestConnectorReturnsTimeout(t *testing.T) {
+	t.Skip("need access network")
 	connector := newConnector(&Config{
 		Net:     "tcp",
 		Addr:    "1.1.1.1:1234",