source: rtems/testsuites/fstests/imfs_support/fs_support.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1006 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#ifdef HAVE_CONFIG_H
10#include "config.h"
11#endif
12#include "pmacros.h"
13
14#include <sys/stat.h>
15
16#include "fstest.h"
17#include "fstest_support.h"
18
19void
20test_initialize_filesystem (void)
21{
22  int rc = 0;
23  rc = mkdir (BASE_FOR_TEST,S_IRWXU|S_IRWXG|S_IRWXO);
24  rtems_test_assert (rc == 0);
25}
26
27void
28test_shutdown_filesystem (void)
29{
30}
31
32/* configuration information */
33#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
34#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
35
36#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
37
38#define CONFIGURE_MAXIMUM_TASKS                  10
39#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
40#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 40
41#define CONFIGURE_INIT_TASK_STACK_SIZE (16 * 1024)
42
43#define CONFIGURE_INIT
44#include <rtems/confdefs.h>
Note: See TracBrowser for help on using the repository browser.