summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/mathl
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-06 07:56:17 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-06 09:06:20 +0100
commit7b00c2fac57740963d3c4d8bf1cf5eab3a31f22e (patch)
tree51fa24406cfa7db08a25dc1d7588f4854c7ad3f9 /testsuites/libtests/mathl
parentfsjffs2gc01: Fix sporadic test failures (diff)
downloadrtems-7b00c2fac57740963d3c4d8bf1cf5eab3a31f22e.tar.bz2
tests: Use <tmacros.h> in all tests
Update #3170. Update #3199.
Diffstat (limited to 'testsuites/libtests/mathl')
-rw-r--r--testsuites/libtests/mathl/Makefile.am2
-rw-r--r--testsuites/libtests/mathl/init.c6
2 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/libtests/mathl/Makefile.am b/testsuites/libtests/mathl/Makefile.am
index b7a823460c..9dba9a115d 100644
--- a/testsuites/libtests/mathl/Makefile.am
+++ b/testsuites/libtests/mathl/Makefile.am
@@ -12,6 +12,8 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
+AM_CPPFLAGS += -I$(top_srcdir)/../support/include
+
mathl_LDADD = -lm
LINK_OBJS = $(mathl_OBJECTS) $(mathl_LDADD)
diff --git a/testsuites/libtests/mathl/init.c b/testsuites/libtests/mathl/init.c
index 4bb3b08c7f..af5eb9b4a5 100644
--- a/testsuites/libtests/mathl/init.c
+++ b/testsuites/libtests/mathl/init.c
@@ -35,6 +35,8 @@ const char rtems_test_name[] = "MATHL";
extern void domathl(void);
#if __rtems__
+#include <tmacros.h>
+
/* NOTICE: the clock driver is explicitly disabled */
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
@@ -60,13 +62,13 @@ int main( void )
{
#if __rtems__
rtems_print_printer_fprintf_putc(&rtems_test_printer);
- rtems_test_begin();
+ TEST_BEGIN();
#endif
domathl();
#if __rtems__
- rtems_test_end();
+ TEST_END();
#endif
exit( 0 );
}