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
path: root/test
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-10-13 11:44:07 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-10-13 11:44:07 +0300
commiteacc2242f41558cf67817cccc7c69a9d600ec790 (patch)
treeb61628da2ddf058a88cd56d5775796fa38f31673 /test
parent4a107a120c536d88a2e1590bf2ee9f9d1ecc03d1 (diff)
Don't commit stuff when sick and at 10.30pm at night! Fix previous commit.
Diffstat (limited to 'test')
-rw-r--r--test/tests/issue0009.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests/issue0009.cpp b/test/tests/issue0009.cpp
index 3bdfdeb4..379c6cc5 100644
--- a/test/tests/issue0009.cpp
+++ b/test/tests/issue0009.cpp
@@ -107,7 +107,7 @@ static inline void TestIssue09c()
auto end = std::chrono::steady_clock::now();
auto diff = std::chrono::duration_cast<std::chrono::milliseconds>(end - begin).count();
std::cout << "Construct and tear down a small mapped_file_handle with a reservation of 2^40 took " << diff << "ms." << std::endl;
-#ifdef __APPLE_
+#ifdef __APPLE__
BOOST_CHECK(diff < 2500);
#else
BOOST_CHECK(diff < 250);