summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-21 14:22:35 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-22 07:45:48 +0200
commitf153157410e2f0ad0a9081c55880a97aa8b265b8 (patch)
tree029fb74d83be2659ea6934104ab32eb406c73067
parentAvoid <rtems/print.h> in <rtems/rtems/ratemon.h> (diff)
downloadrtems-f153157410e2f0ad0a9081c55880a97aa8b265b8.tar.bz2
Rename rtems_test_print() into rtems_test_printf()
-rw-r--r--cpukit/libmisc/testsupport/test.h2
-rw-r--r--cpukit/libmisc/testsupport/testbeginend.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libmisc/testsupport/test.h b/cpukit/libmisc/testsupport/test.h
index 94f917faec..0afd3e91f4 100644
--- a/cpukit/libmisc/testsupport/test.h
+++ b/cpukit/libmisc/testsupport/test.h
@@ -86,7 +86,7 @@ int rtems_test_end(void);
*
* @returns As specified by printf().
*/
-int rtems_test_print(const char* format, ...) RTEMS_PRINTFLIKE(1, 2);
+int rtems_test_printf(const char* format, ...) RTEMS_PRINTFLIKE(1, 2);
/**
* @brief Internal context for parallel job execution.
diff --git a/cpukit/libmisc/testsupport/testbeginend.c b/cpukit/libmisc/testsupport/testbeginend.c
index 6bfc400e1e..cc00c8f0a9 100644
--- a/cpukit/libmisc/testsupport/testbeginend.c
+++ b/cpukit/libmisc/testsupport/testbeginend.c
@@ -34,7 +34,7 @@ int rtems_test_end(void)
);
}
-int rtems_test_print(
+int rtems_test_printf(
const char* format,
...
)