blob: ae4a10c517c605dfff0cbdf09b90e370949ed4fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include <library/cpp/testing/unittest/registar.h>
#include "filemap.h"
#include "info.h"
#include "mincore.h"
#include "mlock.h"
#include "tempfile.h"
#include <util/generic/size_literals.h>
Y_UNIT_TEST_SUITE(MincoreSuite) {
static const char* FileName_("./mappped_file");
Y_UNIT_TEST(TestLockAndInCore) {
TVector<char> content(2_MB);
TTempFile cleanup(FileName_);
TFile file(FileName_, CreateAlways | WrOnly);
file.Write(content.data(), content.size());
file.Close();
TFileMap mappedFile(FileName_, TMemoryMapCommon::oRdWr);
mappedFile.Map(0, mappedFile.Length());
UNIT_ASSERT_EQUAL(mappedFile.MappedSize(), content.size());
UNIT_ASSERT_EQUAL(mappedFile.Length(), static_cast<i64>(content.size()));
LockMemory(mappedFile.Ptr(), mappedFile.Length());
TVector<unsigned char> incore(mappedFile.Length() / NSystemInfo::GetPageSize());
InCoreMemory(mappedFile.Ptr(), mappedFile.Length(), incore.data(), incore.size());
// compile and run on all platforms, but assume non-zero results only on Linux
#if defined(_linux_)
for (const auto& flag : incore) {
UNIT_ASSERT(IsPageInCore(flag));
}
#endif
}
}
|