| 30 | //------------------------------------ cpp_main --------------------------------------// |
| 31 | |
| 32 | int cpp_main(int argc, char* argv[]) |
| 33 | { |
| 34 | cout << "Hello, 9219" << endl; |
| 35 | cout << "This is a test for non-Windows systems" << endl; |
| 36 | |
| 37 | BOOST_TEST(fs::exists(const_cast< char* >("."))); |
| 38 | |
| 39 | return ::boost::report_errors(); |
| 40 | } // cpp_main |