diff options
Diffstat (limited to 'libcxx/test')
-rw-r--r-- | libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.exists/exists.pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.exists/exists.pass.cpp b/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.exists/exists.pass.cpp index 460b8be6b12..252ced6fd65 100644 --- a/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.exists/exists.pass.cpp +++ b/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.exists/exists.pass.cpp @@ -65,6 +65,10 @@ TEST_CASE(test_exist_not_found) { const path p = StaticEnv::DNE; TEST_CHECK(exists(p) == false); + + std::error_code ec = GetTestEC(); + TEST_CHECK(exists(p, ec) == false); + TEST_CHECK(!ec); } TEST_CASE(test_exists_fails) |