summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx13/test.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 08:06:16 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 08:06:16 +0100
commit698c2e504a4382036b412e1b2798ca83432bbbab (patch)
tree114a7c00b534d6cecd4566b5d1c892c79b899268 /testsuites/psxtests/psx13/test.c
parenttests: Use rtems_status_text() (diff)
downloadrtems-698c2e504a4382036b412e1b2798ca83432bbbab.tar.bz2
tests/psxtests: Use <rtems/test.h>
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psx13/test.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/testsuites/psxtests/psx13/test.c b/testsuites/psxtests/psx13/test.c
index ec2bec4485..c039bff868 100644
--- a/testsuites/psxtests/psx13/test.c
+++ b/testsuites/psxtests/psx13/test.c
@@ -39,6 +39,8 @@
#include <pmacros.h>
+const char rtems_test_name[] = "PSX 13";
+
int InitFiles(void);
int DeviceLSeekTest(void);
int DupTest(void);
@@ -647,7 +649,7 @@ int main(
)
#endif
{
- puts( "*** POSIX TEST 13 ***" );
+ TEST_BEGIN();
if (InitFiles() == TRUE) {
printf ("\nFiles initialized successfully.\n");
@@ -716,8 +718,8 @@ int main(
sync();
}
else
- printf ("\n\nError opening files for write!!!!\n");
+ TEST_BEGIN();
- printf( "\n\n*** END OF TEST PSX13 ***\n" );
+ TEST_END();
rtems_test_exit(0);
}