mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Applied aria2-1.0.0-mingw-r5.patch
This commit is contained in:
parent
5faa91e24c
commit
67d5d6d55e
11 changed files with 141 additions and 45 deletions
|
@ -215,16 +215,20 @@ void FileTest::testUtime()
|
|||
{
|
||||
File f("/tmp/FileTest_testUTime");
|
||||
createFile(f.getPath(), 0);
|
||||
CPPUNIT_ASSERT(f.utime(Time(1000), Time(2000)));
|
||||
|
||||
struct stat buf;
|
||||
time_t atime = (time_t) 100000;
|
||||
time_t mtime = (time_t) 200000;
|
||||
|
||||
CPPUNIT_ASSERT(f.utime(Time(atime), Time(mtime)));
|
||||
|
||||
a2_struct_stat buf;
|
||||
CPPUNIT_ASSERT(0 == stat(f.getPath().c_str(), &buf));
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)1000, buf.st_atime);
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)2000, f.getModifiedTime().getTime());
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)atime, buf.st_atime);
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)mtime, f.getModifiedTime().getTime());
|
||||
|
||||
File notFound("/tmp/FileTest_testUTime_notFound");
|
||||
notFound.remove();
|
||||
CPPUNIT_ASSERT(!notFound.utime(Time(1000), Time(2000)));
|
||||
CPPUNIT_ASSERT(!notFound.utime(Time(atime), Time(mtime)));
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue