From 9c1de9779714df79ed393a9039cafbd3a356b4e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E6=A5=9A=E6=B6=B5?= <878415225@qq.com> Date: Sun, 14 Sep 2025 00:15:18 +0800 Subject: [PATCH 1/2] Test --- test/errc_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/errc_test.cpp b/test/errc_test.cpp index fa6ce378b..7603817c0 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(); } From 2a643333fd2b256103e24068e3aec633c762bfbe Mon Sep 17 00:00:00 2001 From: lzx <3517351380@qq.com> Date: Sun, 14 Sep 2025 21:19:53 +0800 Subject: [PATCH 2/2] feat: add hello.cpp demo file --- meta/hello.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 meta/hello.cpp diff --git a/meta/hello.cpp b/meta/hello.cpp new file mode 100644 index 000000000..263513954 --- /dev/null +++ b/meta/hello.cpp @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("Hello"); + return 0; +} \ No newline at end of file