summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/mathf/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/mathf/init.c')
-rw-r--r--testsuites/libtests/mathf/init.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/testsuites/libtests/mathf/init.c b/testsuites/libtests/mathf/init.c
index 643de1703a..cb60f68951 100644
--- a/testsuites/libtests/mathf/init.c
+++ b/testsuites/libtests/mathf/init.c
@@ -24,6 +24,9 @@
#if __rtems__
#include <bsp.h> /* for device driver prototypes */
+#include <rtems/test.h>
+
+const char rtems_test_name[] = "MATHF";
#endif
#include <stdio.h>
@@ -40,6 +43,8 @@ extern void domathf(void);
#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT
@@ -52,11 +57,15 @@ rtems_task Init(
int main( void )
#endif
{
- fprintf( stdout, "*** FLOAT MATH TEST ***\n" );
+#if __rtems__
+ rtems_test_begin();
+#endif
domathf();
- fprintf( stdout, "*** END OF FLOAT MATH TEST ***\n" );
+#if __rtems__
+ rtems_test_end();
+#endif
exit( 0 );
}