diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-02-17 19:38:36 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-02-17 19:38:36 +0000 |
commit | ef26f2ece87c282e68a15ed703f0a56869e419b2 (patch) | |
tree | 1661fdef296876bea40ad6c4d164b7ecc7a21131 | |
parent | e392b74caad5d93946653d4656f1b354fa0ef713 (diff) |
Vendor import of libc++ release_40 branch r295380:vendor/libc++/libc++-release_40-r296509vendor/libc++/libc++-release_40-r296202vendor/libc++/libc++-release_40-r296002vendor/libc++/libc++-release_40-r295910vendor/libc++/libc++-release_40-r295380
Notes
Notes:
svn path=/vendor/libc++/dist/; revision=313887
svn path=/vendor/libc++/libc++-release_40-r296509/; revision=314415; tag=vendor/libc++/libc++-release_40-r296509
-rw-r--r-- | test/std/experimental/filesystem/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/std/experimental/filesystem/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp b/test/std/experimental/filesystem/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp index 7537ac20c757..6b542a5b67a5 100644 --- a/test/std/experimental/filesystem/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp +++ b/test/std/experimental/filesystem/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp @@ -57,15 +57,19 @@ TEST_CASE(hard_link_count_for_directory) Dir3Expect = 3; // . .. file5 #endif TEST_CHECK(hard_link_count(StaticEnv::Dir) == DirExpect || - hard_link_count(StaticEnv::Dir) == DirExpectAlt); + hard_link_count(StaticEnv::Dir) == DirExpectAlt || + hard_link_count(StaticEnv::Dir) == 1); TEST_CHECK(hard_link_count(StaticEnv::Dir3) == Dir3Expect || - hard_link_count(StaticEnv::Dir3) == Dir3ExpectAlt); + hard_link_count(StaticEnv::Dir3) == Dir3ExpectAlt || + hard_link_count(StaticEnv::Dir3) == 1); std::error_code ec; TEST_CHECK(hard_link_count(StaticEnv::Dir, ec) == DirExpect || - hard_link_count(StaticEnv::Dir, ec) == DirExpectAlt); + hard_link_count(StaticEnv::Dir, ec) == DirExpectAlt || + hard_link_count(StaticEnv::Dir) == 1); TEST_CHECK(hard_link_count(StaticEnv::Dir3, ec) == Dir3Expect || - hard_link_count(StaticEnv::Dir3, ec) == Dir3ExpectAlt); + hard_link_count(StaticEnv::Dir3, ec) == Dir3ExpectAlt || + hard_link_count(StaticEnv::Dir3) == 1); } TEST_CASE(hard_link_count_increments_test) { |