source: rtems/testsuites/fstests/imfs_support/fs_supprot.h @ 88e2a36

4.115
Last change on this file since 88e2a36 was db6fbdf, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/07/11 at 07:32:05

2011-09-07 Ralf Corsépius <ralf.corsepius@…>

  • fserror/fserror.doc, fserror/test.c, fslink/fslink.doc, fslink/test.c, fspatheval/patheval.doc, fspatheval/test.c, fspermission/fspermission.doc, fspermission/test.c, fsrdwr/fsrdwr.doc, fsrdwr/init.c, fssymlink/fssymlink.doc, fssymlink/test.c, fstime/fstime.doc, fstime/test.c, imfs_support/fs_config.h, imfs_support/fs_support.c, imfs_support/fs_supprot.h, mdosfs_support/fs_config.h, mdosfs_support/fs_support.c, mimfs_support/fs_config.h, mimfs_support/fs_support.c, mrfs_support/fs_config.h, mrfs_support/fs_support.c, support/fstest.h, support/fstest_support.c, support/fstest_support.h, support/ramdisk_support.c, support/ramdisk_support.h: Fix CVS-Ids.
  • Property mode set to 100644
File size: 872 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2011.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11#ifdef HAVE_CONFIG_H
12#include "config.h"
13#endif
14#include "pmacros.h"
15
16#include "fs_config.h"
17
18void test_initialize_filesystem(void)
19{
20  int rc=0;
21  rc=mkdir(BASE_FOR_TEST,0777);
22  rtems_test_assert(rc==0);
23}
24
25void test_shutdown_filesystem(void)
26{
27}
28/* configuration information */
29#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
30#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
31
32#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
33
34#define CONFIGURE_MAXIMUM_TASKS 1
35#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
36#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 40
37
38#define CONFIGURE_INIT
39
40#include <rtems/confdefs.h>
Note: See TracBrowser for help on using the repository browser.