summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxstat/psxstat.scn
blob: 15b63846c43a50ead41663b7dc0a6b179c88d166 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245


*** STAT TEST 01 ***
>>>>Current Time:  - rtems_clock_get - 09:00:00   12/31/1988
Making directory /dir1
Making directory /dir2
Making directory /dir3
Making directory /dir4
Making directory /dir1/dir1
Making directory /./././dir1/ dir1
Making directory /./././links
Making directory ///dir1/dir1/../../dir1/../symlinks/////
Making file ////dir1///file1\//
Making file /dir1/file2
Making file /dir1/file3
Making file /dir1/file4
Making file /dir1/dir1/file1
Making file ../../..//dir1/./././dir1/ file1
Making file main.c
Making file dir1/dir1/../../links/dir1
Making file links/dir2
Making file links/dir3
Making file links/dir4
Making file links/dir1_dir1
Making file links/dir1_ dir1
Making file links/../links/../links/links
Making file links/dir1_file1
Making file links/dir1_file2
Making file links/dir1_file3
Making file links/dir1_file4
Making file links/dir1_dir1_f1
Making file links/dir1_dir1 f1
Making file links/links/links/links_dir1
Making file links//links_dir2
Making file links//links_dir3
Making file links//links_dir4
Making file links//links_dir1_d1
Making file links//links_dir1 d1
Making file links//links_links
Making file links///links_d1_file1
Making file links///links_d1_file2
Making file links///links_d1_file3
Making file links///links_d1_file4
Making file links///links_d1_d1_f1
Making file links///links_r1_d1 f1
Doing the stat() on all the good absolute paths
stat( /dev ) returned
st_dev     (0x0:0x0)
...st_ino     2         ( May vary slightly )
...st_mode    40771
...st_nlink   1
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    536
...st_atime   Fri Jan 01 00:00:00 1988
...st_mtime   Fri Jan 01 00:00:00 1988
...st_ctime   Fri Jan 01 00:00:00 1988
stat( ////dir1///file1\// ) returned
st_dev     (0x0:0x0)
...st_ino     d         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( /dir1/\/file2 ) returned
st_dev     (0x0:0x0)
...st_ino     e         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( /dir1/file3/////\ ) returned
st_dev     (0x0:0x0)
...st_ino     f         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( /dir1/file4 ) returned
st_dev     (0x0:0x0)
...st_ino     10         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( /dir1/dir1/file1 ) returned
st_dev     (0x0:0x0)
...st_ino     11         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( /dir1/dir1/ file1 ) returned
st_dev     (0x0:0x0)
...st_ino     12         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( /dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     5         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1608
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( /dir2////// ) returned
st_dev     (0x0:0x0)
...st_ino     6         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( /dir3 ) returned
st_dev     (0x0:0x0)
...st_ino     7         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( /dir4 ) returned
st_dev     (0x0:0x0)
...st_ino     8         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( /dir1/dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     9         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    536
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( /dir1/ dir1///\ ) returned
st_dev     (0x0:0x0)
...st_ino     a         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( ///////links///// ) returned
st_dev     (0x0:0x0)
...st_ino     b         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    6968
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
Doing the stat() on all the good relative paths
stat( dev ) returned
st_dev     (0x0:0x0)
...st_ino     2         ( May vary slightly )
...st_mode    40771
...st_nlink   1
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    536
...st_atime   Fri Jan 01 00:00:00 1988
...st_mtime   Fri Jan 01 00:00:00 1988
...st_ctime   Fri Jan 01 00:00:00 1988
stat( dir1///file1\// ) returned
st_dev     (0x0:0x0)
...st_ino     d         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( dir1/\/file2 ) returned
st_dev     (0x0:0x0)
...st_ino     e         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( dir1/file3/////\ ) returned
st_dev     (0x0:0x0)
...st_ino     f         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( dir1/file4 ) returned
st_dev     (0x0:0x0)
...st_ino     10         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( dir1/dir1/file1 ) returned
st_dev     (0x0:0x0)
...st_ino     11         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( dir1/dir1/ file1 ) returned
st_dev     (0x0:0x0)
...st_ino     12         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     5         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1608
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( dir2////// ) returned
st_dev     (0x0:0x0)
...st_ino     6         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( dir3 ) returned
st_dev     (0x0:0x0)
...st_ino     7         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( dir4 ) returned
st_dev     (0x0:0x0)
...st_ino     8         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( dir1/dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     9         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    536
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( dir1/ dir1///\ ) returned
st_dev     (0x0:0x0)
...st_ino     a         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( main.c ) returned
st_dev     (0x0:0x0)
...st_ino     13         ( May vary slightly )
...st_mode    100000
...st_nlink   1
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:00 1988
chdir to dev
stat relative paths that are now bad
stat( dev ) returned : No such file or directory
stat( dir1///file1\// ) returned : No such file or directory
stat( dir1/\/file2 ) returned : No such file or directory
stat( dir1/file3/////\ ) returned : No such file or directory
stat( dir1/file4 ) returned : No such file or directory
stat( dir1/dir1/file1 ) returned : No such file or directory
stat( dir1/dir1/ file1 ) returned : No such file or directory
stat( dir1 ) returned : No such file or directory
stat( dir2////// ) returned : No such file or directory
stat( dir3 ) returned : No such file or directory
stat( dir4 ) returned : No such file or directory
stat( dir1/dir1 ) returned : No such file or directory
stat( dir1/ dir1///\ ) returned : No such file or directory
stat( main.c ) returned : No such file or directory
chdir to ../links
Doing the stat() on good links
stat( dir1/dir1/../../links/dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     5         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1608
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links/dir2 ) returned
st_dev     (0x0:0x0)
...st_ino     6         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links/dir3 ) returned
st_dev     (0x0:0x0)
...st_ino     7         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links/dir4 ) returned
st_dev     (0x0:0x0)
...st_ino     8         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links/dir1_dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     9         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    536
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links/dir1_ dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     a         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links/../links/../links/links ) returned
st_dev     (0x0:0x0)
...st_ino     b         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    6968
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links/dir1_file1 ) returned
st_dev     (0x0:0x0)
...st_ino     d         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links/dir1_file2 ) returned
st_dev     (0x0:0x0)
...st_ino     e         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links/dir1_file3 ) returned
st_dev     (0x0:0x0)
...st_ino     f         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links/dir1_file4 ) returned
st_dev     (0x0:0x0)
...st_ino     10         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links/dir1_dir1_f1 ) returned
st_dev     (0x0:0x0)
...st_ino     11         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links/dir1_dir1 f1 ) returned
st_dev     (0x0:0x0)
...st_ino     12         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links/links/links/links_dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     5         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1608
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links//links_dir2 ) returned
st_dev     (0x0:0x0)
...st_ino     6         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links//links_dir3 ) returned
st_dev     (0x0:0x0)
...st_ino     7         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links//links_dir4 ) returned
st_dev     (0x0:0x0)
...st_ino     8         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links//links_dir1_d1 ) returned
st_dev     (0x0:0x0)
...st_ino     9         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    536
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links//links_dir1 d1 ) returned
st_dev     (0x0:0x0)
...st_ino     a         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links//links_links ) returned
st_dev     (0x0:0x0)
...st_ino     b         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    6968
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( links///links_d1_file1 ) returned
st_dev     (0x0:0x0)
...st_ino     d         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links///links_d1_file2 ) returned
st_dev     (0x0:0x0)
...st_ino     e         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links///links_d1_file3 ) returned
st_dev     (0x0:0x0)
...st_ino     f         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links///links_d1_file4 ) returned
st_dev     (0x0:0x0)
...st_ino     10         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links///links_d1_d1_f1 ) returned
st_dev     (0x0:0x0)
...st_ino     11         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( links///links_r1_d1 f1 ) returned
st_dev     (0x0:0x0)
...st_ino     12         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
chmod of /dir1/dir1 to Read/Write
Doing the stat() on all the bad paths
stat( /links/ENAMETOOLONG__________________________ ) returned : File or path name too long
stat( /dir1/file4/NOTADIR ) returned : Not a directory
stat( /dir1/dir1/EACCES__ ) returned : Permission denied
Making file /links/ENAMETOOLONG__________________________ : File or path name too long
Making file /dir1/file4/NOTADIR : Not a directory
Making file /dir1/dir1/EACCES__ : Permission denied
Return /dir1/dir1 to RWX
Making file /symlinks/a_file_symlink
Verify with readlink
Making file /symlinks/a_dir_symlink
Verify with readlink
Making file /symlinks/a_link_symlink
Verify with readlink
Making file ../symlinks/no_file
Verify with readlink
Making file /symlinks/a_dir_symlink/a_file_symlink
Verify with readlink
Making file /symlinks/links
Verify with readlink
stat( /symlinks/a_file_symlink ) returned
st_dev     (0x0:0x0)
...st_ino     d         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:10 1988
stat( /symlinks/a_dir_symlink ) returned
st_dev     (0x0:0x0)
...st_ino     5         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1876
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( /symlinks/a_link_symlink ) returned
st_dev     (0x0:0x0)
...st_ino     5         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1876
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
stat( ../symlinks/no_file ) returned : No such file or directory
stat( /symlinks/a_dir_symlink/a_file_symlink ) returned
st_dev     (0x0:0x0)
...st_ino     5         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1876
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:05 1988
Making file 1
Verify with readlink
Making file 2
Verify with readlink
Making file 3
Verify with readlink
Making file 4
Verify with readlink
Making file 5
Verify with readlink
Making file 6
Verify with readlink
Making file 7
Verify with readlink
Making file 8
Verify with readlink
Making file 9
Verify with readlink
stat( 1 ) returned
st_dev     (0x0:0x0)
...st_ino     c         ( May vary slightly )
...st_mode    40700
...st_nlink   1
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1340
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:00 1988
stat( 2 ) returned
st_dev     (0x0:0x0)
...st_ino     c         ( May vary slightly )
...st_mode    40700
...st_nlink   1
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1340
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:00 1988
stat( 3 ) returned
st_dev     (0x0:0x0)
...st_ino     c         ( May vary slightly )
...st_mode    40700
...st_nlink   1
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1340
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:00 1988
stat( 4 ) returned
st_dev     (0x0:0x0)
...st_ino     c         ( May vary slightly )
...st_mode    40700
...st_nlink   1
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    1340
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:00 1988
stat( 5 ) returned : Too many symbolic links
stat( 6 ) returned : Too many symbolic links
stat( 7 ) returned : Too many symbolic links
stat( 8 ) returned : Too many symbolic links
stat( 9 ) returned : Too many symbolic links
Pass an invalid mode to chmod should fail with EPERM
chdir to a file should fail with ENOTDIR
Verify RWX permission on /dir1 via access
chmod of /dir1 to Read/Write
chmod fred should fail with ENOENT
Create under /dir1 should fail with EACCES
chdir to /dir1/dir1 should fail with EACCES
Stat with a NULL buffer should fail with EFAULT
chmod of /dir1 to Read/Write
mkdir /dir1/BADNAME should fail with EACCESS
/dir1 Should exist ( access )
/dir1 Should have read  permission( access )
/dir1 Should have write permission( access )
/dir1 Should not have execute permission( access )
Restore /dir1 to RWX
chdir to /
Remove /./././dir1/ dir1
stat( /./././dir1/ dir1 ) returned : No such file or directory
stat( links/dir1_ dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     a         ( May vary slightly )
...st_mode    40700
...st_nlink   2
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:20 1988
stat( links//links_dir1 d1 ) returned
st_dev     (0x0:0x0)
...st_ino     a         ( May vary slightly )
...st_mode    40700
...st_nlink   2
...st_uid     0
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:20 1988
Chdir to links/dir1_ dir1
Chdir to .. should fail with ENOENT
mkdir ../t should fail with ENOENT
mkdir t
chdir to /
rmdir links/dir1_ dir1 should fail with ENOTDIR
unlink links/dir1_ dir1
unlink links//links_dir1 d1 should fail with ENOTEMPTY
rmdir links//links_dir1 d1/t
unlink links/dir1_ dir1
Attempting to mount IMFS file system at /dir1/my_mount_point
rmdir /dir1/my_mount_point should fail with EBUSY
Unmount /dir1/my_mount_point
chmod of ////dir1///file1\// to group and other execute
Open ////dir1///file1\// for write should fail with EACCES
chmod of /dir4 to User Execute and Read
Mkdir of /dir4/NewFile should fail with EACCES
Making too many hard links.
Making file /LinkName1
Making file /LinkName2
Making file /LinkName3
Making file /LinkName4
Making file /LinkName5
Making file /LinkName6
Making file /LinkName7
Making file /LinkName8
pass fstat a null pointer should fail with EFAULT
chdir to /
Change group of ////dir1///file1\//
stat( ////dir1///file1\// ) returned
st_dev     (0x0:0x0)
...st_ino     d         ( May vary slightly )
...st_mode    100011
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change owner of ////dir1///file1\//
stat( ////dir1///file1\// ) returned
st_dev     (0x0:0x0)
...st_ino     d         ( May vary slightly )
...st_mode    100011
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change group of /dir1/file2
stat( /dir1/file2 ) returned
st_dev     (0x0:0x0)
...st_ino     e         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change owner of /dir1/file2
stat( /dir1/file2 ) returned
st_dev     (0x0:0x0)
...st_ino     e         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change group of /dir1/file3
stat( /dir1/file3 ) returned
st_dev     (0x0:0x0)
...st_ino     f         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change owner of /dir1/file3
stat( /dir1/file3 ) returned
st_dev     (0x0:0x0)
...st_ino     f         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change group of /dir1/file4
stat( /dir1/file4 ) returned
st_dev     (0x0:0x0)
...st_ino     10         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change owner of /dir1/file4
stat( /dir1/file4 ) returned
st_dev     (0x0:0x0)
...st_ino     10         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change group of /dir1/dir1/file1
stat( /dir1/dir1/file1 ) returned
st_dev     (0x0:0x0)
...st_ino     11         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change owner of /dir1/dir1/file1
stat( /dir1/dir1/file1 ) returned
st_dev     (0x0:0x0)
...st_ino     11         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change group of ../../..//dir1/./././dir1/ file1
stat( ../../..//dir1/./././dir1/ file1 ) returned
st_dev     (0x0:0x0)
...st_ino     12         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change owner of ../../..//dir1/./././dir1/ file1
stat( ../../..//dir1/./././dir1/ file1 ) returned
st_dev     (0x0:0x0)
...st_ino     12         ( May vary slightly )
...st_mode    100000
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change group of main.c
stat( main.c ) returned
st_dev     (0x0:0x0)
...st_ino     13         ( May vary slightly )
...st_mode    100000
...st_nlink   1
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change owner of main.c
stat( main.c ) returned
st_dev     (0x0:0x0)
...st_ino     13         ( May vary slightly )
...st_mode    100000
...st_nlink   1
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:25 1988
Change group of dir1/dir1/../../links/dir1
stat( dir1/dir1/../../links/dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     5         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    1876
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change owner of dir1/dir1/../../links/dir1
stat( dir1/dir1/../../links/dir1 ) returned : Permission denied
Change group of links/dir2
stat( links/dir2 ) returned
st_dev     (0x0:0x0)
...st_ino     6         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change owner of links/dir2
stat( links/dir2 ) returned
st_dev     (0x0:0x0)
...st_ino     6         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change group of links/dir3
stat( links/dir3 ) returned
st_dev     (0x0:0x0)
...st_ino     7         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change owner of links/dir3
stat( links/dir3 ) returned
st_dev     (0x0:0x0)
...st_ino     7         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change group of links/dir4
stat( links/dir4 ) returned
st_dev     (0x0:0x0)
...st_ino     8         ( May vary slightly )
...st_mode    40500
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change owner of links/dir4
stat( links/dir4 ) returned
st_dev     (0x0:0x0)
...st_ino     8         ( May vary slightly )
...st_mode    40500
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    0
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change group of links/dir1_dir1
stat( links/dir1_dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     9         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    536
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change owner of links/dir1_dir1
stat( links/dir1_dir1 ) returned
st_dev     (0x0:0x0)
...st_ino     9         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     1
...st_gid     0
...st_rdev    (0x0:0x0)
...st_size    536
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change group of links/dir1_ dir1
stat( links/dir1_ dir1 ) returned : No such file or directory
Change owner of links/dir1_ dir1
stat( links/dir1_ dir1 ) returned : No such file or directory
Change group of links/../links/../links/links
stat( links/../links/../links/links ) returned
st_dev     (0x0:0x0)
...st_ino     b         ( May vary slightly )
...st_mode    40700
...st_nlink   3
...st_uid     0
...st_gid     1
...st_rdev    (0x0:0x0)
...st_size    8844
...st_atime   Sat Dec 31 09:00:00 1988
...st_mtime   Sat Dec 31 09:00:00 1988
...st_ctime   Sat Dec 31 09:00:30 1988
Change owner of links/../links/../links/links
stat( links/../links/../links/links ) returned : Permission denied
*** END OF STAT TEST 01 ***