Changeset 78edd44 in rtems


Ignore:
Timestamp:
11/02/99 16:38:19 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
4c1b914
Parents:
3251b55
Message:

Minor fixes to make screen match a bit better.

Files:
4 edited

Legend:

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

    r3251b55 r78edd44  
    99stat of /dev/console
    1010....st_dev     (0x0:0x0)
    11 ....st_ino     3
     11....st_ino     3  may vary by small amount
    1212....mode  = 00020771
    1313....nlink = 1
     
    5353(10)the first write!!!
    5454
    55 stat( /tmp/joel ) returned     st_dev     (0x0:0x0)
    56 ....st_ino     10
     55stat( /tmp/joel ) returned
     56....st_dev     (0x0:0x0)
     57....st_ino     10  may vary by small amount
    5758....mode  = 00100700
    5859....nlink = 1
     
    8283
    8384(139743)
    84 stat( /tmp/joel ) returned     st_dev     (0x0:0x0)
    85 ....st_ino     11
     85stat( /tmp/joel ) returned
     86....st_dev     (0x0:0x0)
     87....st_ino     11  may vary by small amount
    8688....mode  = 00100700
    8789....nlink = 1
     
    9496stat(/tmp/j) returned -1 (errno=2)
    9597....st_dev     (0x0:0x0)
    96 ....st_ino     3
     98....st_ino     3  may vary by small amount
    9799....mode  = 00020771
    98100....nlink = 1
     
    110112(5) 26 characters written to the file
    111113....st_dev     (0x0:0x0)
    112 ....st_ino     12
     114....st_ino     12  may vary by small amount
    113115....mode  = 00100660
    114116....nlink = 1
     
    124126This is call 5 to fprintf
    125127....st_dev     (0x0:0x0)
    126 ....st_ino     12
     128....st_ino     12  may vary by small amount
    127129....mode  = 00100660
    128130....nlink = 1
     
    150152truncate /tmp/j to length of 40
    151153....st_dev     (0x0:0x0)
    152 ....st_ino     12
     154....st_ino     12  may vary by small amount
    153155....mode  = 00100660
    154156....nlink = 1
  • c/src/tests/psxtests/psxfile01/test.c

    r3251b55 r78edd44  
    7878
    7979  printf( "....st_dev     (0x%x:0x%x)\n", major1, minor1 );
    80   printf( "....st_ino     %x\n", buf->st_ino );
     80  printf( "....st_ino     %x  may vary by small amount\n",
     81      (unsigned int) buf->st_ino );
    8182  printf( "....mode  = %08o\n", buf->st_mode );
    8283  printf( "....nlink = %d\n", buf->st_nlink );
     
    113114    printf( ": %s\n", strerror( errno ) );
    114115  } else {
     116    puts("");
    115117    dump_statbuf( &statbuf );
    116118  }
     
    134136  int               status;
    135137  int               max_size;
    136   int               fd, fd1;
     138  int               fd;
    137139  int               i;
    138140  struct stat       buf;
  • testsuites/psxtests/psxfile01/psxfile01.scn

    r3251b55 r78edd44  
    99stat of /dev/console
    1010....st_dev     (0x0:0x0)
    11 ....st_ino     3
     11....st_ino     3  may vary by small amount
    1212....mode  = 00020771
    1313....nlink = 1
     
    5353(10)the first write!!!
    5454
    55 stat( /tmp/joel ) returned     st_dev     (0x0:0x0)
    56 ....st_ino     10
     55stat( /tmp/joel ) returned
     56....st_dev     (0x0:0x0)
     57....st_ino     10  may vary by small amount
    5758....mode  = 00100700
    5859....nlink = 1
     
    8283
    8384(139743)
    84 stat( /tmp/joel ) returned     st_dev     (0x0:0x0)
    85 ....st_ino     11
     85stat( /tmp/joel ) returned
     86....st_dev     (0x0:0x0)
     87....st_ino     11  may vary by small amount
    8688....mode  = 00100700
    8789....nlink = 1
     
    9496stat(/tmp/j) returned -1 (errno=2)
    9597....st_dev     (0x0:0x0)
    96 ....st_ino     3
     98....st_ino     3  may vary by small amount
    9799....mode  = 00020771
    98100....nlink = 1
     
    110112(5) 26 characters written to the file
    111113....st_dev     (0x0:0x0)
    112 ....st_ino     12
     114....st_ino     12  may vary by small amount
    113115....mode  = 00100660
    114116....nlink = 1
     
    124126This is call 5 to fprintf
    125127....st_dev     (0x0:0x0)
    126 ....st_ino     12
     128....st_ino     12  may vary by small amount
    127129....mode  = 00100660
    128130....nlink = 1
     
    150152truncate /tmp/j to length of 40
    151153....st_dev     (0x0:0x0)
    152 ....st_ino     12
     154....st_ino     12  may vary by small amount
    153155....mode  = 00100660
    154156....nlink = 1
  • testsuites/psxtests/psxfile01/test.c

    r3251b55 r78edd44  
    7878
    7979  printf( "....st_dev     (0x%x:0x%x)\n", major1, minor1 );
    80   printf( "....st_ino     %x\n", buf->st_ino );
     80  printf( "....st_ino     %x  may vary by small amount\n",
     81      (unsigned int) buf->st_ino );
    8182  printf( "....mode  = %08o\n", buf->st_mode );
    8283  printf( "....nlink = %d\n", buf->st_nlink );
     
    113114    printf( ": %s\n", strerror( errno ) );
    114115  } else {
     116    puts("");
    115117    dump_statbuf( &statbuf );
    116118  }
     
    134136  int               status;
    135137  int               max_size;
    136   int               fd, fd1;
     138  int               fd;
    137139  int               i;
    138140  struct stat       buf;
Note: See TracChangeset for help on using the changeset viewer.