mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Made `make distcheck' pass.
We added 2 macros A2_TEST_DIR and A2_TEST_OUT_DIR to pass tests in `make distcheck`. A2_TEST_DIR refers to test directory. All output files by unit tests are now created under A2_TEST_OUT_DIR directory.
This commit is contained in:
parent
7ac1f17d56
commit
3ee6784b76
40 changed files with 210 additions and 172 deletions
|
@ -84,7 +84,7 @@ void RequestGroupManTest::testSaveServerStat()
|
|||
(std::vector<SharedHandle<RequestGroup> >(),0,option_.get());
|
||||
SharedHandle<ServerStat> ss_localhost(new ServerStat("localhost", "http"));
|
||||
rm.addServerStat(ss_localhost);
|
||||
File f("./aria2_RequestGroupManTest_testSaveServerStat");
|
||||
File f(A2_TEST_OUT_DIR"/aria2_RequestGroupManTest_testSaveServerStat");
|
||||
if(f.exists()) {
|
||||
f.remove();
|
||||
}
|
||||
|
@ -98,7 +98,7 @@ void RequestGroupManTest::testSaveServerStat()
|
|||
|
||||
void RequestGroupManTest::testLoadServerStat()
|
||||
{
|
||||
File f("./aria2_RequestGroupManTest_testLoadServerStat");
|
||||
File f(A2_TEST_OUT_DIR"/aria2_RequestGroupManTest_testLoadServerStat");
|
||||
std::ofstream o(f.getPath().c_str(), std::ios::binary);
|
||||
o << "host=localhost, protocol=http, dl_speed=0, last_updated=1219505257,"
|
||||
<< "status=OK";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue