diff --git a/meta/hello.cpp b/meta/hello.cpp new file mode 100644 index 00000000..26351395 --- /dev/null +++ b/meta/hello.cpp @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("Hello"); + return 0; +} \ No newline at end of file diff --git a/test/errc_test.cpp b/test/errc_test.cpp index fa6ce378..7603817c 100644 --- a/test/errc_test.cpp +++ b/test/errc_test.cpp @@ -13,6 +13,6 @@ int main() BOOST_TEST_EQ( static_cast( boost::system::errc::address_family_not_supported ), EAFNOSUPPORT ); BOOST_TEST( boost::system::is_error_condition_enum< boost::system::errc::errc_t >::value ); - + printf( "All tests passed\n" ); return boost::report_errors(); }