summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxtimer/psxtimer.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-17 16:04:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-17 16:04:40 +0000
commiteed0b96d206fcf7e20781120ff7509d8dd85fe9a (patch)
tree00051b7427d3c58377204e364b464c9d2889ba0b /testsuites/psxtests/psxtimer/psxtimer.c
parent2007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-eed0b96d206fcf7e20781120ff7509d8dd85fe9a.tar.bz2
2007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, configure.ac: Rename psxtimer to psxtimer01 to indicate addition of second POSIX Timer test. Add initial version of psxtimer02 to cover some conditions missed in psxtimer01. More cases left to add. * psxtimer01/.cvsignore, psxtimer01/Makefile.am, psxtimer01/psxtimer.c, psxtimer01/psxtimer01.scn, psxtimer01/system.h, psxtimer02/.cvsignore, psxtimer02/Makefile.am, psxtimer02/psxtimer.c, psxtimer02/psxtimer02.scn, psxtimer02/system.h: New files. * psxtimer/.cvsignore, psxtimer/Makefile.am, psxtimer/psxtimer.c, psxtimer/psxtimer.scn, psxtimer/system.h: Removed.
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psxtimer01/psxtimer.c (renamed from testsuites/psxtests/psxtimer/psxtimer.c)4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxtimer/psxtimer.c b/testsuites/psxtests/psxtimer01/psxtimer.c
index ba79b8b266..f4d58a2d40 100644
--- a/testsuites/psxtests/psxtimer/psxtimer.c
+++ b/testsuites/psxtests/psxtimer01/psxtimer.c
@@ -231,7 +231,7 @@ void *POSIX_Init (
struct sched_param sch_param; /* schedule parameters */
struct periodic_params params_a, params_b, params_c;
- puts( "\n\n*** POSIX Timers Test ***" );
+ puts( "\n\n*** POSIX Timers Test 01 ***" );
data.updated = FALSE;
data.x = 0;
@@ -334,6 +334,6 @@ void *POSIX_Init (
/* execute 20 seconds and finish */
sleep (20);
- puts( "\n\n*** END OF POSIX Timers Test ***" );
+ puts( "*** END OF POSIX Timers Test 01 ***" );
rtems_test_exit (0);
}