summaryrefslogtreecommitdiffstats
path: root/testsuites/fstests/fsimfsconfig01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/fstests/fsimfsconfig01/init.c')
-rw-r--r--testsuites/fstests/fsimfsconfig01/init.c139
1 files changed, 139 insertions, 0 deletions
diff --git a/testsuites/fstests/fsimfsconfig01/init.c b/testsuites/fstests/fsimfsconfig01/init.c
new file mode 100644
index 0000000000..3f842c0451
--- /dev/null
+++ b/testsuites/fstests/fsimfsconfig01/init.c
@@ -0,0 +1,139 @@
+/*
+ * Copyright (c) 2015 embedded brains GmbH. All rights reserved.
+ *
+ * embedded brains GmbH
+ * Dornierstr. 4
+ * 82178 Puchheim
+ * Germany
+ * <rtems@embedded-brains.de>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include "config.h"
+#endif
+
+#include "tmacros.h"
+
+#include <sys/stat.h>
+#include <errno.h>
+#include <stdio.h>
+#include <unistd.h>
+#include <utime.h>
+
+#include <rtems/imfs.h>
+#include <rtems/libio.h>
+
+const char rtems_test_name[] = "FSIMFSCONFIG 1";
+
+static const IMFS_node_control node_control = IMFS_GENERIC_INITIALIZER(
+ &rtems_filesystem_handlers_default,
+ IMFS_node_initialize_generic,
+ IMFS_node_destroy_default
+);
+
+static void Init(rtems_task_argument arg)
+{
+ struct utimbuf times;
+ const char *generic = "generic";
+ const char *mnt = "mnt";
+ int rv;
+
+ TEST_BEGIN();
+
+ rv = IMFS_make_generic_node(
+ generic,
+ S_IFCHR | S_IRWXU | S_IRWXG | S_IRWXO,
+ &node_control,
+ NULL
+ );
+ rtems_test_assert(rv == 0);
+
+ errno = 0;
+ rv = chown(generic, 0, 0);
+ rtems_test_assert(rv == -1);
+ rtems_test_assert(errno == ENOTSUP);
+
+ errno = 0;
+ rv = chmod(generic, 0);
+ rtems_test_assert(rv == -1);
+ rtems_test_assert(errno == ENOTSUP);
+
+ errno = 0;
+ rv = link(generic, "link");
+ rtems_test_assert(rv == -1);
+ rtems_test_assert(errno == ENOTSUP);
+
+ rv = mkdir(mnt, S_IRWXU);
+ rtems_test_assert(rv == 0);
+
+ errno = 0;
+ rv = mount(
+ "",
+ mnt,
+ RTEMS_FILESYSTEM_TYPE_IMFS,
+ RTEMS_FILESYSTEM_READ_ONLY,
+ NULL
+ );
+ rtems_test_assert(rv == -1);
+ rtems_test_assert(errno == ENOTSUP);
+
+ errno = 0;
+ rv = rename(generic, "new");
+ rtems_test_assert(rv == -1);
+ rtems_test_assert(errno == ENOTSUP);
+
+ errno = 0;
+ rv = unlink(generic);
+ rtems_test_assert(rv == -1);
+ rtems_test_assert(errno == ENOTSUP);
+
+ errno = 0;
+ rv = symlink(generic, "link");
+ rtems_test_assert(rv == -1);
+ rtems_test_assert(errno == ENOTSUP);
+
+ errno = 0;
+ rv = utime(generic, &times);
+ rtems_test_assert(rv == -1);
+ rtems_test_assert(errno == ENOTSUP);
+
+ TEST_END();
+ rtems_test_exit(0);
+}
+
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_FILESYSTEM_IMFS
+
+#define CONFIGURE_IMFS_DISABLE_CHOWN
+#define CONFIGURE_IMFS_DISABLE_FCHMOD
+#define CONFIGURE_IMFS_DISABLE_LINK
+
+#if 0
+/*
+ * This would lead to a fatal error since rtems_filesystem_initialize() creates
+ * a "/dev" directory.
+ */
+#define CONFIGURE_IMFS_DISABLE_MKNOD
+#endif
+
+#define CONFIGURE_IMFS_DISABLE_MOUNT
+#define CONFIGURE_IMFS_DISABLE_RENAME
+#define CONFIGURE_IMFS_DISABLE_RMNOD
+#define CONFIGURE_IMFS_DISABLE_SYMLINK
+#define CONFIGURE_IMFS_DISABLE_UTIME
+
+#define CONFIGURE_MAXIMUM_TASKS 1
+
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_INIT
+
+#include <rtems/confdefs.h>