From b970da31289a61aeadb694adbfa24bf88d15044f Mon Sep 17 00:00:00 2001 From: Steffen Schuemann Date: Thu, 23 May 2019 09:19:49 +0200 Subject: [PATCH] Disabled bad check that is not dependend of root name support. --- test/filesystem_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/filesystem_test.cpp b/test/filesystem_test.cpp index a98f9ff..280bf10 100644 --- a/test/filesystem_test.cpp +++ b/test/filesystem_test.cpp @@ -969,9 +969,9 @@ TEST_CASE("30.10.8.5 path iterators", "[filesystem][path][fs.path.itr]") if (has_host_root_name_support()) { CHECK("foo" == *(--fs::path("//host/foo").end())); - auto pi = fs::path("//host/foo").end(); + /*auto pi = fs::path("//host/foo").end(); pi--; - CHECK("foo" == *pi); + CHECK("foo" == *pi);*/ CHECK("//host" == iterateResult(fs::path("//host"))); CHECK("//host,/,foo" == iterateResult(fs::path("//host/foo"))); CHECK("//host" == reverseIterateResult(fs::path("//host")));