source: rtems/testsuites/fstests/mimfs_support/fs_support.c @ 48cfe68

4.115
Last change on this file since 48cfe68 was a0b1b5ed, checked in by Sebastian Huber <sebastian.huber@…>, on 12/15/14 at 13:19:43

Delete CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM

This define was superfluous, undocumented and used inconsistently.

  • Property mode set to 100644
File size: 1.3 KB
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.org/license/LICENSE.
8 */
9
10#ifdef HAVE_CONFIG_H
11#include "config.h"
12#endif
13#include "pmacros.h"
14
15#include <sys/stat.h>
16#include <rtems/libio.h>
17
18#include "fstest.h"
19#include "fstest_support.h"
20
21void
22test_initialize_filesystem (void)
23{
24  int rc = 0;
25  rc = mkdir (BASE_FOR_TEST,S_IRWXU|S_IRWXG|S_IRWXO);
26  rtems_test_assert (rc == 0);
27
28  rc = mount (NULL, BASE_FOR_TEST, "imfs", RTEMS_FILESYSTEM_READ_WRITE, NULL);
29  rtems_test_assert (rc == 0);
30}
31
32
33void
34test_shutdown_filesystem (void)
35{
36  int rc = 0;
37  rc = unmount (BASE_FOR_TEST);
38  rtems_test_assert (rc == 0);
39}
40
41/* configuration information */
42
43/* drivers */
44#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
45#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
46
47/**
48 * Configure base RTEMS resources.
49 */
50
51#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
52
53#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
54
55#define CONFIGURE_MAXIMUM_TASKS                  10
56#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 40
57#define CONFIGURE_INIT_TASK_STACK_SIZE (16 * 1024)
58#define CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS  1
59
60#define CONFIGURE_INIT
61#include <rtems/confdefs.h>
Note: See TracBrowser for help on using the repository browser.