The test's for the sparc-erc32 BSP fail's. when running rtems-test for this particular BSP it fails for almost all test cases, the error message:
*undefined target command: "sim"* I think it's because the tests are run using sparc-rtems-gdb, but the sis target was disabled in this commit: https://git.rtems.org/rtems-source-builder/commit/?id=abc540105d10ddc9cad7de3c7ac0a9aa209ac828 and was moved to use the standalone sparc-rtems-sis. I think this is what is causing the problem, but not so sure. Can someone guide on how to fix this? BTW I know it's a way too early for GSOC but I have anyway attached the patch for hello world.
From d586f1ce31c690ccae84a4d66db03a822e63957c Mon Sep 17 00:00:00 2001 From: gs-niteesh <gsnb...@gmail.com> Date: Mon, 18 Nov 2019 00:42:12 +0530 Subject: [PATCH] hello: modified hello world program for gsoc. --- testsuites/samples/hello/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c index 34ded37c55..6e32eee7f1 100644 --- a/testsuites/samples/hello/init.c +++ b/testsuites/samples/hello/init.c @@ -14,7 +14,7 @@ #include <rtems.h> #include <tmacros.h> -const char rtems_test_name[] = "HELLO WORLD"; +const char rtems_test_name[] = "GSOC HELLO WORLD"; static rtems_task Init( rtems_task_argument ignored @@ -22,7 +22,7 @@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello World modified for GSOC\n" ); TEST_END(); rtems_test_exit( 0 ); } -- 2.17.1
_______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel