summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxfile01/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxfile01/test.c')
-rw-r--r--testsuites/psxtests/psxfile01/test.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/testsuites/psxtests/psxfile01/test.c b/testsuites/psxtests/psxfile01/test.c
index 0474021967..a82303bd17 100644
--- a/testsuites/psxtests/psxfile01/test.c
+++ b/testsuites/psxtests/psxfile01/test.c
@@ -224,11 +224,6 @@ int main(
rtems_test_assert( status == -1 );
rtems_test_assert( errno == EEXIST );
- /* test rtems_filesystem_evaluate_path by sending NULL path */
- status = chdir( NULL );
- rtems_test_assert( status == -1 );
- rtems_test_assert( errno == EFAULT );
-
/*
* Now switch gears and exercise rmdir().
*/
@@ -253,11 +248,6 @@ int main(
rtems_test_assert( status == -1 );
rtems_test_assert( errno == ENOENT );
- puts( "unlink /dev/tty" );
- status = unlink( "/dev/tty" );
- rtems_test_assert( status == -1 );
- rtems_test_assert( errno == EISDIR );
-
puts( "mknod /dev/test_console" );
status = mknod( "/dev/test_console", S_IFCHR, 0LL );
rtems_test_assert( !status );