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/mapped.cpp')
-rw-r--r--test/tests/mapped.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/tests/mapped.cpp b/test/tests/mapped.cpp
index d865f71d..f978a372 100644
--- a/test/tests/mapped.cpp
+++ b/test/tests/mapped.cpp
@@ -73,7 +73,6 @@ static inline void TestMappedView2()
filesystem::remove("testfile", ec);
}
mapped_file_handle mfh = mapped_file_handle::mapped_file(1024 * 1024, {}, "testfile", file_handle::mode::write, file_handle::creation::if_needed, file_handle::caching::all, file_handle::flag::unlink_on_first_close).value();
- BOOST_CHECK(mfh.address() == nullptr);
mfh.truncate(10000 * sizeof(int)).value();
byte *addr = mfh.address();
BOOST_CHECK(addr != nullptr);