diff options
Diffstat (limited to 'libstdc++-v3/testsuite/experimental/filesystem')
-rw-r--r-- | libstdc++-v3/testsuite/experimental/filesystem/operations/remove_all.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/experimental/filesystem/operations/remove_all.cc b/libstdc++-v3/testsuite/experimental/filesystem/operations/remove_all.cc index 0e2aeda..c346a95 100644 --- a/libstdc++-v3/testsuite/experimental/filesystem/operations/remove_all.cc +++ b/libstdc++-v3/testsuite/experimental/filesystem/operations/remove_all.cc @@ -124,7 +124,7 @@ test04() // remove write permission on the directory: fs::permissions(dir, fs::perms::owner_read|fs::perms::owner_exec); n = fs::remove_all(dir, ec); - VERIFY( n == -1 ); + VERIFY( n == std::uintmax_t(-1) ); VERIFY( ec == std::errc::permission_denied ); // not ENOTEMPTY try { |