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-11-11 16:16:54 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-11-11 16:16:54 +0300
commite1be6ddf37c90553048041188ad06745e0077ec1 (patch)
treed4ca1e74654b65f7a58c71dfe83ef30c82acb967 /test
parent7028871fef378c457c51029561ee5997907dad91 (diff)
More Windows install fixes, disable issue0009 test on 32 bit, yet more debug printing on clang inside path_discovery.
Diffstat (limited to 'test')
-rw-r--r--test/tests/issue0009.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/tests/issue0009.cpp b/test/tests/issue0009.cpp
index a3b7b8bd..4ebd0d45 100644
--- a/test/tests/issue0009.cpp
+++ b/test/tests/issue0009.cpp
@@ -24,6 +24,8 @@ Distributed under the Boost Software License, Version 1.0.
#include "../test_kernel_decl.hpp"
+#if !defined(__GNUC__) || __SIZE_WIDTH__ > 32
+
static inline void TestIssue09a()
{
namespace llfio = LLFIO_V2_NAMESPACE;
@@ -127,3 +129,4 @@ KERNELTEST_TEST_KERNEL(regression, llfio, issues, 9b,
"Tests issue #9 map_handle and mapped_file_handle are very slow with large address reservations on Windows", TestIssue09b())
KERNELTEST_TEST_KERNEL(regression, llfio, issues, 9c,
"Tests issue #9 map_handle and mapped_file_handle are very slow with large address reservations on Windows", TestIssue09c())
+#endif