source: rtems/testsuites/fstests/imfs_support/fs_support.c @ db6fbdf

4.115
Last change on this file since db6fbdf 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: 939 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 <sys/stat.h>
17
18#include "fstest.h"
19
20void
21test_initialize_filesystem (void)
22{
23  int rc = 0;
24  rc = mkdir (BASE_FOR_TEST,S_IRWXU|S_IRWXG|S_IRWXO);
25  rtems_test_assert (rc == 0);
26}
27
28void
29test_shutdown_filesystem (void)
30{
31}
32
33/* configuration information */
34#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
35#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
36
37#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
38
39#define CONFIGURE_MAXIMUM_TASKS                  10
40#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
41#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 40
42
43#define CONFIGURE_INIT
44#include <rtems/confdefs.h>
Note: See TracBrowser for help on using the repository browser.