From a580cedc186d11ab6fc8ca4329404bf8e6e64dd3 Mon Sep 17 00:00:00 2001 From: Sean Tang <seantang...@g.ucla.edu> Date: Tue, 2 Apr 2024 02:13:32 -0700 Subject: [PATCH] Finished Hello World Example
--- testsuites/samples/hello/init.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c index 83f6342ab3..ce9a6cbd5f 100644 --- a/testsuites/samples/hello/init.c +++ b/testsuites/samples/hello/init.c @@ -41,9 +41,10 @@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello World from Sean\n" ); + _Assert(-1 == 1); TEST_END(); - rtems_test_exit( 0 ); + rtems_test_exit( 1 ); } -- 2.34.1
_______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel