| 81 | std::string platform(BOOST_PLATFORM); |
| 82 | |
| 83 | void check_path(const path& source, |
| 84 | const wstring& expected, const char* file, int line) |
| 85 | { |
| 86 | if (source == expected) return; |
| 87 | |
| 88 | ++::boost::detail::test_errors(); |
| 89 | |
| 90 | std::cout << file; |
| 91 | std::wcout << L'(' << line << L"): source.wstring(): \"" |
| 92 | << source.wstring() |
| 93 | << L"\" != expected: \"" << expected |
| 94 | << L"\"\n" ; |
| 95 | } |
| 96 | |
| 97 | # ifdef BOOST_WINDOWS_API |
| 98 | void check_native(const path& p, |
nothing calls this directly
no outgoing calls
no test coverage detected