Skip to content

Commit

Permalink
[core] Disable an unnecessary test
Browse files Browse the repository at this point in the history
  • Loading branch information
alanmcgovern committed Jul 8, 2022
1 parent 88789cd commit 561369b
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,12 @@ public async Task CreateV2Torrent ()
Assert.AreEqual (expected.Files[i].EndPieceIndex, actual.Files[i].EndPieceIndex);
}
}

/*
* test disabled because it takes 10+ seconds to run. It used to validate
* that TorrentCreatore correctly handled files larger than 2GB, however
* all of that core reading/writing logic is handled by IPieceWriter/DiskManager
* now and so there's nothing really to test in this class.
* Disable the test but don't delete it... because maybe it's good?
[Test]
public async Task LargeMultiTorrent ()
{
Expand Down Expand Up @@ -214,7 +219,7 @@ public async Task LargeMultiTorrent ()
Assert.AreEqual (name4, torrent.Files[3].Path, "#5");
Assert.AreEqual (name5, torrent.Files[4].Path, "#6");
}

*/
[Test]
public void IllegalDestinationPath ()
{
Expand Down

0 comments on commit 561369b

Please sign in to comment.