split up super seeding unit test

This commit is contained in:
arvidn 2015-06-07 09:27:23 -04:00
parent ac04ee5ef3
commit d997181524
1 changed files with 4 additions and 2 deletions

View File

@ -32,13 +32,15 @@ POSSIBILITY OF SUCH DAMAGE.
#include "swarm_suite.hpp" #include "swarm_suite.hpp"
TORRENT_TEST(super_seeding) TORRENT_TEST(plain)
{ {
// with super seeding // with super seeding
test_swarm(super_seeding); test_swarm(super_seeding);
}
TORRENT_TEST(strict)
{
// with strict super seeding // with strict super seeding
test_swarm(super_seeding | strict_super_seeding); test_swarm(super_seeding | strict_super_seeding);
} }