mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +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
|
@ -1,9 +1,11 @@
|
|||
#include "SingleFileAllocationIterator.h"
|
||||
#include "File.h"
|
||||
#include "DefaultDiskWriter.h"
|
||||
#include <fstream>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
#include "File.h"
|
||||
#include "DefaultDiskWriter.h"
|
||||
#include "a2functional.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
class SingleFileAllocationIteratorTest:public CppUnit::TestFixture {
|
||||
|
@ -36,7 +38,7 @@ void SingleFileAllocationIteratorTest::testAllocate()
|
|||
|
||||
DefaultDiskWriter writer(fn);
|
||||
int64_t offset = 10;
|
||||
int64_t totalLength = 16*1024*2+8*1024;
|
||||
int64_t totalLength = 32_k + 8_k;
|
||||
|
||||
// we have to open file first.
|
||||
writer.openExistingFile();
|
||||
|
@ -47,7 +49,7 @@ void SingleFileAllocationIteratorTest::testAllocate()
|
|||
itr.allocateChunk();
|
||||
}
|
||||
File f(fn);
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)40960, f.size());
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)40_k, f.size());
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue