diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog index c4115b7d14..adcea3cac1 100644 --- a/testsuites/sptests/ChangeLog +++ b/testsuites/sptests/ChangeLog @@ -1,3 +1,7 @@ +2010-06-07 Bharath Suri + + * spfifo01/main.c: New file. + 2010-06-07 Bharath Suri PR PR1542 diff --git a/testsuites/sptests/spfifo01/main.c b/testsuites/sptests/spfifo01/main.c new file mode 100644 index 0000000000..98863e4edc --- /dev/null +++ b/testsuites/sptests/spfifo01/main.c @@ -0,0 +1,40 @@ +/* + * COPYRIGHT (c) 1989-2010. + * On-Line Applications Research Corporation (OAR). + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.com/license/LICENSE. + * + * $Id$ + */ + +/* Includes */ +#include +#include + +void test_main(void); + +rtems_task Init( + rtems_task_argument not_used +) +{ + test_main(); + rtems_test_exit(0); +} + +#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER +#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER + +#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM +#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 6 + +#define CONFIGURE_MAXIMUM_TASKS 1 + +#define CONFIGURE_RTEMS_INIT_TASKS_TABLE + +#define CONFIGURE_INIT + +#include + +/* end of file */