diff --git a/cpukit/libmisc/testsupport/testbeginend.c b/cpukit/libmisc/testsupport/testbeginend.c
index 6383b33..a38d79b 100644
--- a/cpukit/libmisc/testsupport/testbeginend.c
+++ b/cpukit/libmisc/testsupport/testbeginend.c
@@ -25,7 +25,7 @@ int rtems_test_begin_with_plugin(
 {
   return (*printf_func)(
     printf_arg,
-    "\n\n*** BEGIN OF TEST %s ***\n",
+    "\n\n*** BEGIN OF JARIELLE CATBAGAN'S GSOC TEST %s ***\n",
     rtems_test_name
   );
 }
@@ -37,7 +37,7 @@ int rtems_test_end_with_plugin(
 {
   return (*printf_func)(
     printf_arg,
-    "*** END OF TEST %s ***\n",
+    "*** END OF JARIELLE CATBAGAN'S GSOC TEST %s ***\n",
     rtems_test_name
   );
 }
diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c
index d8fe450..9efa16c 100644
--- a/testsuites/samples/hello/init.c
+++ b/testsuites/samples/hello/init.c
@@ -28,8 +28,11 @@ rtems_task Init(
 )
 {
   rtems_test_begin();
-  printf( "Hello World\n" );
+  printf("Hello RTEMS Community World!\n");
+  printf("My name is Jarielle Catbagan!:)\n");
   rtems_test_end();
+  printf("\n");
+  printf("\n");
   exit( 0 );
 }
 
