| 103 | //--------------------------------------------------------------------------------------// |
| 104 | |
| 105 | int test_main(int, char*[]) |
| 106 | { |
| 107 | // document state of critical macros |
| 108 | #ifdef BOOST_FILESYSTEM_POSIX_API |
| 109 | cout << "BOOST_FILESYSTEM_POSIX_API" << endl; |
| 110 | #endif |
| 111 | #ifdef BOOST_FILESYSTEM_WINDOWS_API |
| 112 | cout << "BOOST_FILESYSTEM_WINDOWS_API" << endl; |
| 113 | #endif |
| 114 | |
| 115 | lexically_relative_test(); |
| 116 | lexically_proximate_test(); |
| 117 | |
| 118 | return ::boost::report_errors(); |
| 119 | } |
nothing calls this directly
no test coverage detected