tests/libtests: Use <rtems/test.h>

This commit is contained in:
Sebastian Huber
2014-03-17 08:10:40 +01:00
parent 802d3ba712
commit f8b2eb03f7
82 changed files with 449 additions and 146 deletions

View File

@@ -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 );
}