From 8acd571553dcd573249f6fc5a1227c8b9260fe6c Mon Sep 17 00:00:00 2001 From: AlbertoFVisconti Date: Fri, 27 Mar 2026 10:47:12 +0100 Subject: [PATCH] Updated testsuites/samples/hello/init.c to print a personalized message --- testsuites/samples/hello/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c index 76b939818a..795134381b 100644 --- a/testsuites/samples/hello/init.c +++ b/testsuites/samples/hello/init.c @@ -41,7 +41,7 @@ static rtems_task Init( rtems_task_argument ignored ) rtems_print_printer_fprintf_putc( &rtems_test_printer ); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello from The Dark Side! My name is Alberto\n" ); TEST_END(); rtems_test_exit( 0 ); } -- 2.43.0