2011-03-09 Joel Sherrill <joel.sherrill@oarcorp.com>

* devfs04/devfs04.scn, devfs04/init.c: Increase configuration so this
	passes on sis.
This commit is contained in:
Joel Sherrill
2011-03-09 19:39:44 +00:00
parent 8b54251dcb
commit 89cd2dfe94
3 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2011-03-09 Joel Sherrill <joel.sherrill@oarcorp.com>
* devfs04/devfs04.scn, devfs04/init.c: Increase configuration so this
passes on sis.
2011-03-09 Sebastian Huber <sebastian.huber@embedded-brains.de>
* malloctest/init.c: Improve coverage.

View File

@@ -6,4 +6,5 @@ Init - attempt to open the /dev/test RD mode -- OK
Init - attempt to read from /dev/test -- OK
Init - attempt to read from /dev/test - expect ENOSYS
Init - attempt ioctl on the device - expect ENOSYS
Init - mknod(/dev/null)-- OK
*** END OF TEST DEVFS04 ***

View File

@@ -65,6 +65,7 @@ rtems_task Init(
rtems_test_assert( status == -1 );
rtems_test_assert( errno == ENOSYS );
puts( "Init - mknod(/dev/null)-- OK" );
status = mknod( "/dev/null", 0777 | S_IFCHR, 0LL );
rtems_test_assert( status == 0 );
@@ -80,6 +81,7 @@ rtems_task Init(
/* include an extra slot for registering the termios one dynamically */
#define CONFIGURE_MAXIMUM_DRIVERS 3
#define CONFIGURE_MAXIMUM_DEVICES 6
#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 5