Changeset 4c1b914 in rtems


Ignore:
Timestamp:
11/02/99 16:39:44 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
4dc89814
Parents:
78edd44
Message:

Minor changes to make the screen match a bit better.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/tests/psxtests/psxmount/psxmount.scn

    r78edd44 r4c1b914  
    5656Unmount status: 0
    5757Mount a NULL file system and verify EINVAL
    58 mount with option RA should fail with EINVAL
     58mount with option -62 should fail with EINVAL
    5959Mount a Read Only filesystem at /c/y/my_mount_point
    6060Read only file system successfully mounted at /c/y/my_mount_point
     
    6363Mount on a file should fail with ENOTDIR
    6464Create and chdir to /c/y/my_mount_point/mydir
    65  unmount of /c/y/my_mount_point should fail with EBUSY
     65unmount of /c/y/my_mount_point should fail with EBUSY
    6666chdir to / and verify we can unmount /c/y/my_mount_point
    6767 unmount /c/y/my_mount_point
  • c/src/tests/psxtests/psxmount/test.c

    r78edd44 r4c1b914  
    309309  assert( status == 0 );
    310310
    311   printf(" unmount of /c/y/my_mount_point should fail with EBUSY\n");
     311  printf("unmount of /c/y/my_mount_point should fail with EBUSY\n");
    312312  status = unmount( "/c/y/my_mount_point" );
    313313  assert( status == -1 );
     
    322322  assert( status == 0 );
    323323
    324   printf(" unmount /c/y/my_mount_point \n");
     324  printf("unmount /c/y/my_mount_point \n");
    325325  status = unmount( "/c/y/my_mount_point" );
    326326  assert( status == 0 );
  • testsuites/psxtests/psxmount/psxmount.scn

    r78edd44 r4c1b914  
    5656Unmount status: 0
    5757Mount a NULL file system and verify EINVAL
    58 mount with option RA should fail with EINVAL
     58mount with option -62 should fail with EINVAL
    5959Mount a Read Only filesystem at /c/y/my_mount_point
    6060Read only file system successfully mounted at /c/y/my_mount_point
     
    6363Mount on a file should fail with ENOTDIR
    6464Create and chdir to /c/y/my_mount_point/mydir
    65  unmount of /c/y/my_mount_point should fail with EBUSY
     65unmount of /c/y/my_mount_point should fail with EBUSY
    6666chdir to / and verify we can unmount /c/y/my_mount_point
    6767 unmount /c/y/my_mount_point
  • testsuites/psxtests/psxmount/test.c

    r78edd44 r4c1b914  
    309309  assert( status == 0 );
    310310
    311   printf(" unmount of /c/y/my_mount_point should fail with EBUSY\n");
     311  printf("unmount of /c/y/my_mount_point should fail with EBUSY\n");
    312312  status = unmount( "/c/y/my_mount_point" );
    313313  assert( status == -1 );
     
    322322  assert( status == 0 );
    323323
    324   printf(" unmount /c/y/my_mount_point \n");
     324  printf("unmount /c/y/my_mount_point \n");
    325325  status = unmount( "/c/y/my_mount_point" );
    326326  assert( status == 0 );
Note: See TracChangeset for help on using the changeset viewer.