mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Merged Ross's patch to test code.
This commit is contained in:
parent
8d84d9f97c
commit
19ef788023
30 changed files with 173 additions and 107 deletions
|
@ -87,7 +87,11 @@ void FileTest::testRemove() {
|
|||
CPPUNIT_ASSERT(!f.remove());
|
||||
|
||||
string dir = "/tmp/aria2testdir";
|
||||
#ifdef __MINGW32__
|
||||
mkdir(dir.c_str());
|
||||
#else
|
||||
mkdir(dir.c_str(), 0777);
|
||||
#endif // __MINGW32__
|
||||
File d(dir);
|
||||
CPPUNIT_ASSERT(d.exists());
|
||||
CPPUNIT_ASSERT(d.remove());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue