mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Use user-defined literal for k, m, and g (powers of 1024)
This commit is contained in:
parent
8ba9b04747
commit
318c804504
99 changed files with 482 additions and 453 deletions
|
@ -39,7 +39,7 @@ void FallocFileAllocationIteratorTest::testAllocate()
|
|||
|
||||
DefaultDiskWriter writer(fn);
|
||||
int64_t offset = 10;
|
||||
int64_t totalLength = 40960;
|
||||
int64_t totalLength = 40_k;
|
||||
|
||||
// we have to open file first.
|
||||
writer.openExistingFile();
|
||||
|
@ -48,7 +48,7 @@ void FallocFileAllocationIteratorTest::testAllocate()
|
|||
itr.allocateChunk();
|
||||
CPPUNIT_ASSERT(itr.finished());
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)40960, f.size());
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)40_k, f.size());
|
||||
#endif // !HAVE_FALLOCATE
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue