windows fix for unit test
This commit is contained in:
parent
f6a3e42ae7
commit
c21a8a8fae
|
@ -302,7 +302,11 @@ int test_main()
|
||||||
std::cerr << ti.name() << std::endl;
|
std::cerr << ti.name() << std::endl;
|
||||||
TEST_CHECK(ti.name() == "test1");
|
TEST_CHECK(ti.name() == "test1");
|
||||||
|
|
||||||
|
#ifdef TORRENT_WINDOWS
|
||||||
|
info["name.utf-8"] = "c:/test1/test2/test3";
|
||||||
|
#else
|
||||||
info["name.utf-8"] = "/test1/test2/test3";
|
info["name.utf-8"] = "/test1/test2/test3";
|
||||||
|
#endif
|
||||||
torrent["info"] = info;
|
torrent["info"] = info;
|
||||||
torrent_info ti2(torrent);
|
torrent_info ti2(torrent);
|
||||||
std::cerr << ti2.name() << std::endl;
|
std::cerr << ti2.name() << std::endl;
|
||||||
|
|
Loading…
Reference in New Issue