summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 16:39:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 16:39:44 +0000
commit4c1b914ed8983440095b1dcb1ebc67cd4cc7cf4d (patch)
tree3264b88b5308f01ef4be0a6776d2511216e6bf1d /c/src/tests/psxtests
parentMinor fixes to make screen match a bit better. (diff)
downloadrtems-4c1b914ed8983440095b1dcb1ebc67cd4cc7cf4d.tar.bz2
Minor changes to make the screen match a bit better.
Diffstat (limited to 'c/src/tests/psxtests')
-rw-r--r--c/src/tests/psxtests/psxmount/psxmount.scn4
-rw-r--r--c/src/tests/psxtests/psxmount/test.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/c/src/tests/psxtests/psxmount/psxmount.scn b/c/src/tests/psxtests/psxmount/psxmount.scn
index a186517e4f..eaf8703572 100644
--- a/c/src/tests/psxtests/psxmount/psxmount.scn
+++ b/c/src/tests/psxtests/psxmount/psxmount.scn
@@ -55,14 +55,14 @@ chdir() status : 0
Unmount status: 0
Mount a NULL file system and verify EINVAL
-mount with option RA should fail with EINVAL
+mount with option -62 should fail with EINVAL
Mount a Read Only filesystem at /c/y/my_mount_point
Read only file system successfully mounted at /c/y/my_mount_point
create c/y/my_mount_point/../../y/my_mount_point/new_dir
Verify a mount point retruns EBUSY for another mount
Mount on a file should fail with ENOTDIR
Create and chdir to /c/y/my_mount_point/mydir
- unmount of /c/y/my_mount_point should fail with EBUSY
+unmount of /c/y/my_mount_point should fail with EBUSY
chdir to / and verify we can unmount /c/y/my_mount_point
unmount /c/y/my_mount_point
unmount /b/mount_point should fail with EINVAL
diff --git a/c/src/tests/psxtests/psxmount/test.c b/c/src/tests/psxtests/psxmount/test.c
index 4a0e40ffd9..c5e348accb 100644
--- a/c/src/tests/psxtests/psxmount/test.c
+++ b/c/src/tests/psxtests/psxmount/test.c
@@ -308,7 +308,7 @@ int main(
status = chdir( "/c/y/my_mount_point/mydir" );
assert( status == 0 );
- printf(" unmount of /c/y/my_mount_point should fail with EBUSY\n");
+ printf("unmount of /c/y/my_mount_point should fail with EBUSY\n");
status = unmount( "/c/y/my_mount_point" );
assert( status == -1 );
assert( errno == EBUSY );
@@ -321,7 +321,7 @@ int main(
status = chdir( "/" );
assert( status == 0 );
- printf(" unmount /c/y/my_mount_point \n");
+ printf("unmount /c/y/my_mount_point \n");
status = unmount( "/c/y/my_mount_point" );
assert( status == 0 );