summaryrefslogtreecommitdiffstats
path: root/testsuites/fstests
diff options
context:
space:
mode:
authorChristian Mauderer <Christian.Mauderer@embedded-brains.de>2014-03-27 14:23:20 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-27 14:50:36 +0100
commit7d5c27e308632cce2052eb2aaf6a601aa0b5bc17 (patch)
tree26f46ffbd8fe4cb4523aec6b978d6532120393b9 /testsuites/fstests
parentm68k/mrm332: changes required to get the mrm332 bsp working again. (diff)
downloadrtems-7d5c27e308632cce2052eb2aaf6a601aa0b5bc17.tar.bz2
privateenv: Remove sharing of user environment between threads.
Diffstat (limited to 'testsuites/fstests')
-rw-r--r--testsuites/fstests/fsnofs01/fsnofs01.doc1
-rw-r--r--testsuites/fstests/fsnofs01/init.c12
2 files changed, 0 insertions, 13 deletions
diff --git a/testsuites/fstests/fsnofs01/fsnofs01.doc b/testsuites/fstests/fsnofs01/fsnofs01.doc
index 5980be8844..3a47c46a22 100644
--- a/testsuites/fstests/fsnofs01/fsnofs01.doc
+++ b/testsuites/fstests/fsnofs01/fsnofs01.doc
@@ -35,7 +35,6 @@ directives:
+ rtems_filesystem_location_free
+ rtems_filesystem_global_location_obtain_null
+ rtems_libio_set_private_env
- + rtems_libio_share_private_env
+ rtems_libio_use_global_env
+ rmdir
+ stat
diff --git a/testsuites/fstests/fsnofs01/init.c b/testsuites/fstests/fsnofs01/init.c
index fdcf959fdf..13cd7096e7 100644
--- a/testsuites/fstests/fsnofs01/init.c
+++ b/testsuites/fstests/fsnofs01/init.c
@@ -315,18 +315,6 @@ static void test_user_env(void)
rtems_test_assert(node_count(loc_chain) == 1);
rtems_test_assert(null_loc->reference_count == 4);
- sc = rtems_libio_share_private_env(RTEMS_SELF);
- rtems_test_assert(sc == RTEMS_SUCCESSFUL);
-
- rtems_test_assert(node_count(loc_chain) == 1);
- rtems_test_assert(null_loc->reference_count == 4);
-
- sc = rtems_libio_share_private_env(rtems_task_self());
- rtems_test_assert(sc == RTEMS_SUCCESSFUL);
-
- rtems_test_assert(node_count(loc_chain) == 1);
- rtems_test_assert(null_loc->reference_count == 4);
-
rtems_libio_use_global_env();
rtems_test_assert(node_count(loc_chain) == 1);