1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Shengjing Zhu <zhsj@debian.org>
Date: Wed, 22 Feb 2023 16:55:38 +0800
Subject: Skip TestReadV3 which needs /etc/resolv.conf
It's empty on https://tests.reproducible-builds.org/
---
toolbox/hgfs/server_test.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/toolbox/hgfs/server_test.go b/toolbox/hgfs/server_test.go
index a572fbb..3075924 100644
--- a/toolbox/hgfs/server_test.go
+++ b/toolbox/hgfs/server_test.go
@@ -245,6 +245,7 @@ func TestInvalidOp(t *testing.T) {
}
func TestReadV3(t *testing.T) {
+ t.Skip("Need /etc/resolv.conf")
Trace = testing.Verbose()
c := NewClient()
|