| 813 | // recursive_iterator_status_tests -------------------------------------------------// |
| 814 | |
| 815 | void recursive_iterator_status_tests() |
| 816 | { |
| 817 | cout << "recursive_iterator_status_tests..." << endl; |
| 818 | for (fs::recursive_directory_iterator it(dir); |
| 819 | it != fs::recursive_directory_iterator(); |
| 820 | ++it) |
| 821 | { |
| 822 | BOOST_TEST(fs::status(it->path()).type() == it->status().type()); |
| 823 | BOOST_TEST(fs::symlink_status(it->path()).type() == it->symlink_status().type()); |
| 824 | } |
| 825 | } |
| 826 | |
| 827 | // create_hard_link_tests ----------------------------------------------------------// |
| 828 |
no test coverage detected