]> Sergey Matveev's repositories - btrtrc.git/blobdiff - issue211_test.go
Make fs a separate module
[btrtrc.git] / issue211_test.go
index dedbaa5647a80a1337f94e10a7ef3aa38a2852b1..7794f8a50137974993485f57d1a14f30f3d5a913 100644 (file)
@@ -1,3 +1,6 @@
+//go:build !wasm
+// +build !wasm
+
 package torrent
 
 import (
@@ -14,7 +17,7 @@ import (
 )
 
 func TestDropTorrentWithMmapStorageWhileHashing(t *testing.T) {
-       cfg := TestingConfig()
+       cfg := TestingConfig(t)
        // Ensure the data is present when the torrent is added, and not obtained
        // over the network as the test runs.
        cfg.DownloadRateLimiter = rate.NewLimiter(0, 0)
@@ -23,8 +26,10 @@ func TestDropTorrentWithMmapStorageWhileHashing(t *testing.T) {
        defer cl.Close()
 
        td, mi := testutil.GreetingTestTorrent()
+       mms := storage.NewMMap(td)
+       defer mms.Close()
        tt, new, err := cl.AddTorrentSpec(&TorrentSpec{
-               Storage:   storage.NewMMap(td),
+               Storage:   mms,
                InfoHash:  mi.HashInfoBytes(),
                InfoBytes: mi.InfoBytes,
        })