mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
41 lines
845 B
C++
41 lines
845 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
StdLogSetup(LOG_FILE|LOG_COUT);
|
|
#ifdef CPU_64
|
|
const int64 sz = (int64)2 * 1000 * 1000 * 1000;
|
|
#else
|
|
const int64 sz = (int64)1000 * 1000 * 1000;
|
|
#endif
|
|
String path = GetHomeDirFile("test.bin");
|
|
{
|
|
Buffer<byte> big(sz);
|
|
LOG("Allocated");
|
|
for(int64 i = 0; i < sz; i++) {
|
|
big[i] = i % 123;
|
|
}
|
|
FileOut out(path);
|
|
out.Put64(big, sz);
|
|
LOG("Saved");
|
|
}
|
|
ASSERT(GetFileLength(path) == sz);
|
|
{
|
|
FileIn in(path);
|
|
for(int64 i = 0; i < sz; i++)
|
|
ASSERT(in.Get() == i % 123);
|
|
LOG("Loaded by bytes");
|
|
}
|
|
{
|
|
Buffer<byte> big(sz);
|
|
FileIn in(path);
|
|
ASSERT(in.GetAll64(big, sz));
|
|
LOG("Loaded by GetAll64");
|
|
for(int64 i = 0; i < sz; i++)
|
|
ASSERT(big[i] == i % 123);
|
|
}
|
|
DeleteFile(path);
|
|
LOG("Test passed OK");
|
|
}
|