Home | History | Annotate | Download | only in fs.op.create_directory

Lines Matching defs:ec

15 // bool create_directory(const path& p, const path& attr, error_code& ec) noexcept;
33 std::error_code ec; ((void)ec);
35 ASSERT_SAME_TYPE(decltype(fs::create_directory(p, p, ec)), bool);
37 ASSERT_NOEXCEPT(fs::create_directory(p, p, ec));
49 std::error_code ec;
50 TEST_CHECK(fs::create_directory(dir, dir2, ec) == false);
51 TEST_CHECK(!ec);
70 std::error_code ec;
71 TEST_CHECK(fs::create_directory(dir, attr_dir, ec) == true);
72 TEST_CHECK(!ec);
86 std::error_code ec;
87 TEST_CHECK(fs::create_directory(dir, attr_dir, ec) == false);
88 TEST_CHECK(ec);
98 std::error_code ec;
99 TEST_CHECK(fs::create_directory(file, attr_dir, ec) == false);
100 TEST_CHECK(ec);