Changeset 4c1b914 in rtems
- Timestamp:
- 11/02/99 16:39:44 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4dc89814
- Parents:
- 78edd44
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psxmount/psxmount.scn
r78edd44 r4c1b914 56 56 Unmount status: 0 57 57 Mount a NULL file system and verify EINVAL 58 mount with option RAshould fail with EINVAL58 mount with option -62 should fail with EINVAL 59 59 Mount a Read Only filesystem at /c/y/my_mount_point 60 60 Read only file system successfully mounted at /c/y/my_mount_point … … 63 63 Mount on a file should fail with ENOTDIR 64 64 Create and chdir to /c/y/my_mount_point/mydir 65 65 unmount of /c/y/my_mount_point should fail with EBUSY 66 66 chdir to / and verify we can unmount /c/y/my_mount_point 67 67 unmount /c/y/my_mount_point -
c/src/tests/psxtests/psxmount/test.c
r78edd44 r4c1b914 309 309 assert( status == 0 ); 310 310 311 printf(" 311 printf("unmount of /c/y/my_mount_point should fail with EBUSY\n"); 312 312 status = unmount( "/c/y/my_mount_point" ); 313 313 assert( status == -1 ); … … 322 322 assert( status == 0 ); 323 323 324 printf(" 324 printf("unmount /c/y/my_mount_point \n"); 325 325 status = unmount( "/c/y/my_mount_point" ); 326 326 assert( status == 0 ); -
testsuites/psxtests/psxmount/psxmount.scn
r78edd44 r4c1b914 56 56 Unmount status: 0 57 57 Mount a NULL file system and verify EINVAL 58 mount with option RAshould fail with EINVAL58 mount with option -62 should fail with EINVAL 59 59 Mount a Read Only filesystem at /c/y/my_mount_point 60 60 Read only file system successfully mounted at /c/y/my_mount_point … … 63 63 Mount on a file should fail with ENOTDIR 64 64 Create and chdir to /c/y/my_mount_point/mydir 65 65 unmount of /c/y/my_mount_point should fail with EBUSY 66 66 chdir to / and verify we can unmount /c/y/my_mount_point 67 67 unmount /c/y/my_mount_point -
testsuites/psxtests/psxmount/test.c
r78edd44 r4c1b914 309 309 assert( status == 0 ); 310 310 311 printf(" 311 printf("unmount of /c/y/my_mount_point should fail with EBUSY\n"); 312 312 status = unmount( "/c/y/my_mount_point" ); 313 313 assert( status == -1 ); … … 322 322 assert( status == 0 ); 323 323 324 printf(" 324 printf("unmount /c/y/my_mount_point \n"); 325 325 status = unmount( "/c/y/my_mount_point" ); 326 326 assert( status == 0 );
Note: See TracChangeset
for help on using the changeset viewer.