summaryrefslogtreecommitdiff
path: root/testsuites/ada/support/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/ada/support/init.c')
-rw-r--r--testsuites/ada/support/init.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/testsuites/ada/support/init.c b/testsuites/ada/support/init.c
index 968b17b3a4..9c10aabca5 100644
--- a/testsuites/ada/support/init.c
+++ b/testsuites/ada/support/init.c
@@ -3,9 +3,9 @@
* On-Line Applications Research Corporation (OAR).
*/
-#include <bsp.h>
#include <stdlib.h>
+#include <rtems/test.h>
#include <rtems/score/threadimpl.h>
/*
@@ -26,6 +26,8 @@ static void *POSIX_Init(
* Prototypes for various test support routines. Since these are bound to
* from Ada, there are no external .h files even though they must be public.
*/
+void ada_test_begin(void);
+void ada_test_end(void);
uint32_t milliseconds_per_tick(void);
uint32_t ticks_per_second(void);
uint32_t work_space_size(void);
@@ -41,8 +43,22 @@ rtems_id tcb_to_id(Thread_Control *tcb);
#define CONFIGURE_GNAT_RTEMS
#define CONFIGURE_MEMORY_OVERHEAD (256)
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#include <config.h>
+const char rtems_test_name[] = ADA_TEST_NAME;
+
+void ada_test_begin(void)
+{
+ rtems_test_begin(rtems_test_name, RTEMS_TEST_STATE_PASS);
+}
+
+void ada_test_end(void)
+{
+ rtems_test_end(rtems_test_name);
+}
+
rtems_id tcb_to_id(
Thread_Control *tcb
)