| 705 | // recursive_iterator_status_tests -------------------------------------------------// |
| 706 | |
| 707 | void recursive_iterator_status_tests() |
| 708 | { |
| 709 | cout << "recursive_iterator_status_tests..." << endl; |
| 710 | for (fs::recursive_directory_iterator it (dir); |
| 711 | it != fs::recursive_directory_iterator(); |
| 712 | ++it) |
| 713 | { |
| 714 | BOOST_TEST(fs::status(it->path()).type() == it->status().type()); |
| 715 | BOOST_TEST(fs::symlink_status(it->path()).type() == it->symlink_status().type()); |
| 716 | } |
| 717 | } |
| 718 | |
| 719 | // create_hard_link_tests ----------------------------------------------------------// |
| 720 |
no test coverage detected