Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/tests/issue0009.cpp')
-rw-r--r--test/tests/issue0009.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/tests/issue0009.cpp b/test/tests/issue0009.cpp
index ac06e445..4b17b9fe 100644
--- a/test/tests/issue0009.cpp
+++ b/test/tests/issue0009.cpp
@@ -31,8 +31,18 @@ static inline void TestIssue09a()
fh.truncate(1).value();
auto sh = llfio::section_handle::section(fh).value();
sh.truncate(1ULL << 40ULL).value();
+#ifdef _WIN32
auto mh = llfio::map_handle::map(sh, 1ULL << 35ULL).value();
auto *addr1 = mh.address();
+#else
+ auto mh = llfio::map_handle::map(sh, 1ULL << 40ULL).value();
+ auto *addr1 = mh.address();
+ mh.truncate(1ULL << 35ULL).value();
+ {
+ auto *addr0 = mh.address();
+ BOOST_CHECK(addr1 == addr0);
+ }
+#endif
mh.truncate(1ULL << 36ULL).value();
{
auto *addr2 = mh.address();