fix test_fast_extension
This commit is contained in:
parent
8e6c159c83
commit
9a2fb2739c
|
@ -203,6 +203,10 @@ void test_reject_fast()
|
||||||
add_torrent_params p;
|
add_torrent_params p;
|
||||||
p.ti = t;
|
p.ti = t;
|
||||||
p.save_path = "./tmp1_fast";
|
p.save_path = "./tmp1_fast";
|
||||||
|
|
||||||
|
remove("./tmp1_fast/temporary", ec);
|
||||||
|
if (ec) fprintf(stderr, "remove(): %s\n", ec.message().c_str());
|
||||||
|
ec.clear();
|
||||||
ses1.add_torrent(p, ec);
|
ses1.add_torrent(p, ec);
|
||||||
|
|
||||||
test_sleep(2000);
|
test_sleep(2000);
|
||||||
|
@ -261,6 +265,10 @@ void test_respect_suggest()
|
||||||
add_torrent_params p;
|
add_torrent_params p;
|
||||||
p.ti = t;
|
p.ti = t;
|
||||||
p.save_path = "./tmp1_fast";
|
p.save_path = "./tmp1_fast";
|
||||||
|
|
||||||
|
remove("./tmp1_fast/temporary", ec);
|
||||||
|
if (ec) fprintf(stderr, "remove(): %s\n", ec.message().c_str());
|
||||||
|
ec.clear();
|
||||||
ses1.add_torrent(p, ec);
|
ses1.add_torrent(p, ec);
|
||||||
|
|
||||||
test_sleep(2000);
|
test_sleep(2000);
|
||||||
|
|
Loading…
Reference in New Issue