Disabled bad check that is not dependend of root name support.

This commit is contained in:
Steffen Schuemann 2019-05-23 09:19:49 +02:00
parent 962df76d10
commit b970da3128

View File

@ -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")));