[PATCH] Hello World Task

Aryan Karawale askarawale at gmail.com
Sun Mar 26 07:23:02 UTC 2023


---
 testsuites/samples/hello/.vscode/settings.json | 5 +++++
 testsuites/samples/hello/init.c                | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)
 create mode 100644 testsuites/samples/hello/.vscode/settings.json

diff --git a/testsuites/samples/hello/.vscode/settings.json b/testsuites/samples/hello/.vscode/settings.json
new file mode 100644
index 0000000000..687fc30567
--- /dev/null
+++ b/testsuites/samples/hello/.vscode/settings.json
@@ -0,0 +1,5 @@
+{
+    "files.associations": {
+        "iostream": "c"
+    }
+}
\ No newline at end of file
diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c
index 83f6342ab3..955677015e 100644
--- a/testsuites/samples/hello/init.c
+++ b/testsuites/samples/hello/init.c
@@ -41,7 +41,7 @@ static rtems_task Init(
 {
   rtems_print_printer_fprintf_putc(&rtems_test_printer);
   TEST_BEGIN();
-  printf( "Hello World\n" );
+  printf( "Hello World from aryan \n" );
   TEST_END();
   rtems_test_exit( 0 );
 }
-- 
2.25.1



More information about the devel mailing list