Merged Ross's patch to test code.

This commit is contained in:
Tatsuhiro Tsujikawa 2007-07-23 14:09:46 +00:00
parent 8d84d9f97c
commit 19ef788023
30 changed files with 173 additions and 107 deletions

View file

@ -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());