summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxfile01/test.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-25 14:13:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-25 14:13:14 +0000
commit90606993648ce4a23ad188cb68ba81d52d23324b (patch)
tree9141987ecd23baf699c914a9627cdf2fe86cf5e1 /c/src/tests/psxtests/psxfile01/test.c
parentModified to reflect test change where reinitialize mutex test case was (diff)
downloadrtems-90606993648ce4a23ad188cb68ba81d52d23324b.tar.bz2
Modified to ease comparison of screen to target output.
Diffstat (limited to 'c/src/tests/psxtests/psxfile01/test.c')
-rw-r--r--c/src/tests/psxtests/psxfile01/test.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/c/src/tests/psxtests/psxfile01/test.c b/c/src/tests/psxtests/psxfile01/test.c
index c086b3df1a..4b084a81d1 100644
--- a/c/src/tests/psxtests/psxfile01/test.c
+++ b/c/src/tests/psxtests/psxfile01/test.c
@@ -76,21 +76,21 @@ void dump_statbuf( struct stat *buf )
rtems_filesystem_split_dev_t( buf->st_dev, major1, minor1 );
rtems_filesystem_split_dev_t( buf->st_rdev, major2, minor2 );
- printf( " st_dev (0x%x:0x%x)\n", major1, minor1 );
- printf( " st_ino %x\n", buf->st_ino );
- printf( " mode = %08o\n", buf->st_mode );
- printf( " nlink = %d\n", buf->st_nlink );
+ printf( "....st_dev (0x%x:0x%x)\n", major1, minor1 );
+ printf( "....st_ino %x\n", buf->st_ino );
+ printf( "....mode = %08o\n", buf->st_mode );
+ printf( "....nlink = %d\n", buf->st_nlink );
- printf( " uid = %d\n", buf->st_uid );
- printf( " gid = %d\n", buf->st_gid );
+ printf( "....uid = %d\n", buf->st_uid );
+ printf( "....gid = %d\n", buf->st_gid );
- printf( " atime = %s", ctime(&buf->st_atime) );
- printf( " mtime = %s", ctime(&buf->st_mtime) );
- printf( " ctime = %s", ctime(&buf->st_ctime) );
+ printf( "....atime = %s", ctime(&buf->st_atime) );
+ printf( "....mtime = %s", ctime(&buf->st_mtime) );
+ printf( "....ctime = %s", ctime(&buf->st_ctime) );
#if defined(__svr4__) && !defined(__PPC__) && !defined(__sun__)
- printf( " st_blksize %x\n", buf.st_blksize );
- printf( " st_blocks %x\n", buf.st_blocks );
+ printf( "....st_blksize %x\n", buf.st_blksize );
+ printf( "....st_blocks %x\n", buf.st_blocks );
#endif
}