Use user-defined literal for k, m, and g (powers of 1024)

This commit is contained in:
Tatsuhiro Tsujikawa 2015-06-21 18:04:30 +09:00
parent 8ba9b04747
commit 318c804504
99 changed files with 482 additions and 453 deletions

View file

@ -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