Skip to content

Commit e69290c

Browse files
disable win test (#15095)
``` --- FAIL: TestVerifyData (1.99s) downloader_test.go:97: Error Trace: github.com/erigontech/erigon-lib/downloader/downloader_test.go:97 Error: Received unexpected error: openClient: torrentcfg.openClient: torrent.NewClient: subsequent listen: listen udp4 :53091: bind: An attempt was made to access a socket in a way forbidden by its access permissions. Test: TestVerifyData testing.go:1232: TempDir RemoveAll cleanup: remove C:\Users\RUNNER~1\AppData\Local\Temp\TestVerifyData2884756745\001\downloader\mdbx.dat: The process cannot access the file because it is being used by another process. FAIL ```
1 parent bc4712f commit e69290c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

erigon-lib/downloader/downloader_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ func TestNoEscape(t *testing.T) {
8989
}
9090

9191
func TestVerifyData(t *testing.T) {
92+
if runtime.GOOS == "windows" {
93+
t.Skip("fix me on win please")
94+
}
95+
9296
require := require.New(t)
9397
dirs := datadir.New(t.TempDir())
9498
cfg, err := downloadercfg2.New(context.Background(), dirs, "", lg.Info, 0, 0, 0, 0, 0, nil, nil, "testnet", false, false)

0 commit comments

Comments
 (0)