2011-02-14 Joel Sherrill <joel.sherrill@oarcorp.com>

* psxaio03/init.c, psxaio03/psxaio03.scn: Run in a reasonable amount of
	time. Update screen.
This commit is contained in:
Joel Sherrill
2011-02-15 02:15:06 +00:00
parent b8fc2de1ce
commit ecc59b9ee2
3 changed files with 24 additions and 7 deletions

View File

@@ -1,3 +1,8 @@
2011-02-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxaio03/init.c, psxaio03/psxaio03.scn: Run in a reasonable amount of
time. Update screen.
2011-02-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
* psximfs02/init.c: Disable EPERM test which does not work when POSIX

View File

@@ -112,13 +112,12 @@ POSIX_Init (void *argument)
status = aio_read (aiocbp[6]);
rtems_test_assert (status != -1);
puts (" Init: going to sleep for 60 sec ");
sleep (60);
puts (" Init: going to sleep again for 60 sec ");
sleep (60);
puts (" Init: going to sleep again for 60 sec ");
sleep (60);
puts ("\n\n*** POSIX AIO TEST 03 ***");
puts (" Init: going to sleep for 5 sec ");
sleep (5);
puts (" Init: going to sleep again for 5 sec ");
sleep (5);
puts (" Init: going to sleep again for 5 sec ");
sleep (5);
puts ("*** END OF POSIX AIO TEST 03 ***");

View File

@@ -0,0 +1,13 @@
*** POSIX AIO TEST 03 ***
Init: Open files
Init: [WQ] aio_write on 1st file
Init: [WQ] aio_write on 2nd file
Init: [WQ] aio_read on 2nd file add by priority
Init: [WQ] aio_write on 3rd file
Init: [WQ] aio_write on 4th file
Init: [WQ] aio_write on 5th file -- [WQ] full
Init: [IQ] aio_write on 6th file
Init: going to sleep for 5 sec
Init: going to sleep again for 5 sec
Init: going to sleep again for 5 sec
*** END OF POSIX AIO TEST 03 ***