aboutsummaryrefslogtreecommitdiff
path: root/runtest/syscalls
blob: 906753578abae0909a2d93a9d973f6917323e3c6 (plain)
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
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
#DESCRIPTION:Kernel system calls
abort01 abort01

accept01 accept01
accept02 accept02

accept4_01 accept4_01

access01 access01
access02 access02
access03 access03
access04 access04

acct01 acct01
acct02 acct02

add_key01 add_key01
add_key02 add_key02
add_key03 add_key03
add_key04 add_key04
add_key05 add_key05

adjtimex01 adjtimex01
adjtimex02 adjtimex02
adjtimex03 adjtimex03

alarm02 alarm02
alarm03 alarm03
alarm05 alarm05
alarm06 alarm06
alarm07 alarm07

bind01 bind01
bind02 bind02
bind03 bind03
bind04 bind04
bind05 bind05
bind06 bind06

bpf_map01 bpf_map01
bpf_prog01 bpf_prog01
bpf_prog02 bpf_prog02
bpf_prog03 bpf_prog03
bpf_prog04 bpf_prog04
bpf_prog05 bpf_prog05
bpf_prog06 bpf_prog06
bpf_prog07 bpf_prog07

brk01 brk01
brk02 brk02

capget01 capget01
capget02 capget02

capset01 capset01
capset02 capset02
capset03 capset03
capset04 capset04

cacheflush01 cacheflush01

chdir01 chdir01
chdir01A symlink01 -T chdir01
chdir04 chdir04

chmod01 chmod01
chmod01A symlink01 -T chmod01
chmod03 chmod03
chmod05 chmod05
chmod06 chmod06
chmod07 chmod07

chown01 chown01
chown01_16 chown01_16
chown02 chown02
chown02_16 chown02_16
chown03 chown03
chown03_16 chown03_16
chown04 chown04
chown04_16 chown04_16
chown05 chown05
chown05_16 chown05_16

chroot01 chroot01
chroot02 chroot02
chroot03 chroot03
chroot04 chroot04

clock_adjtime01 clock_adjtime01
clock_adjtime02 clock_adjtime02

clock_getres01 clock_getres01
clock_nanosleep01 clock_nanosleep01
clock_nanosleep02 clock_nanosleep02
clock_nanosleep03 clock_nanosleep03
clock_nanosleep04 clock_nanosleep04

clock_gettime01 clock_gettime01
clock_gettime02 clock_gettime02
clock_gettime03 clock_gettime03
clock_gettime04 clock_gettime04
leapsec01 leapsec01

clock_settime01 clock_settime01
clock_settime02 clock_settime02
clock_settime03 clock_settime03

clone01 clone01
clone02 clone02
clone03 clone03
clone04 clone04
clone05 clone05
clone06 clone06
clone07 clone07
clone08 clone08
clone09 clone09

clone301 clone301
clone302 clone302
clone303 clone303

close01 close01
close02 close02

close_range01 close_range01
close_range02 close_range02

confstr01 confstr01

connect01 connect01
connect02 connect02

creat01 creat01
creat03 creat03
creat04 creat04
creat05 creat05
creat06 creat06
creat07 creat07
creat08 creat08
creat09 creat09

delete_module01 delete_module01
delete_module02 delete_module02
delete_module03 delete_module03

dup01 dup01
dup02 dup02
dup03 dup03
dup04 dup04
dup05 dup05
dup06 dup06
dup07 dup07

dup201 dup201
dup202 dup202
dup203 dup203
dup204 dup204
dup205 dup205
dup206 dup206
dup207 dup207

dup3_01 dup3_01
dup3_02 dup3_02

epoll_create01 epoll_create01
epoll_create02 epoll_create02
epoll_create1_01 epoll_create1_01
epoll_create1_02 epoll_create1_02
epoll01 epoll-ltp
epoll_ctl01 epoll_ctl01
epoll_ctl02 epoll_ctl02
epoll_ctl03 epoll_ctl03
epoll_ctl04 epoll_ctl04
epoll_ctl05 epoll_ctl05
epoll_wait01 epoll_wait01
epoll_wait02 epoll_wait02
epoll_wait03 epoll_wait03
epoll_wait04 epoll_wait04
epoll_wait05 epoll_wait05
epoll_wait06 epoll_wait06
epoll_wait07 epoll_wait07
epoll_pwait01 epoll_pwait01
epoll_pwait02 epoll_pwait02
epoll_pwait03 epoll_pwait03
epoll_pwait04 epoll_pwait04
epoll_pwait05 epoll_pwait05

eventfd01 eventfd01
eventfd02 eventfd02
eventfd03 eventfd03
eventfd04 eventfd04
eventfd05 eventfd05
eventfd06 eventfd06

eventfd2_01 eventfd2_01
eventfd2_02 eventfd2_02
eventfd2_03 eventfd2_03

execl01 execl01
execle01 execle01
execlp01 execlp01

execv01 execv01
execve01 execve01
execve02 execve02
execve03 execve03
execve04 execve04
execve05 execve05 -i 5 -n 32
execve06 execve06
execvp01 execvp01
execveat01 execveat01
execveat02 execveat02
execveat03 execveat03

exit01 exit01
exit02 exit02

exit_group01 exit_group01

#faccessat test cases
faccessat01 faccessat01
faccessat02 faccessat02

#faccessat2 test cases
faccessat201 faccessat201
faccessat202 faccessat202

#fallocate test cases
fallocate01 fallocate01
fallocate02 fallocate02
fallocate03 fallocate03
fallocate04 fallocate04
fallocate05 fallocate05
fallocate06 fallocate06

fsetxattr01 fsetxattr01
fsetxattr02 fsetxattr02

#posix_fadvise test cases
posix_fadvise01                      posix_fadvise01
posix_fadvise01_64                posix_fadvise01_64
posix_fadvise02                      posix_fadvise02
posix_fadvise02_64                posix_fadvise02_64
posix_fadvise03                      posix_fadvise03
posix_fadvise03_64                posix_fadvise03_64
posix_fadvise04                      posix_fadvise04
posix_fadvise04_64                posix_fadvise04_64

fchdir01 fchdir01
fchdir02 fchdir02
fchdir03 fchdir03

fchmod01 fchmod01
fchmod02 fchmod02
fchmod03 fchmod03
fchmod04 fchmod04
fchmod05 fchmod05
fchmod06 fchmod06

#fchmodat test cases
fchmodat01 fchmodat01

fchown01 fchown01
fchown01_16 fchown01_16
fchown02 fchown02
fchown02_16 fchown02_16
fchown03 fchown03
fchown03_16 fchown03_16
fchown04 fchown04
fchown04_16 fchown04_16
fchown05 fchown05
fchown05_16 fchown05_16

#fchownat test case
fchownat01 fchownat01
fchownat02 fchownat02

fcntl01 fcntl01
fcntl01_64 fcntl01_64
fcntl02 fcntl02
fcntl02_64 fcntl02_64
fcntl03 fcntl03
fcntl03_64 fcntl03_64
fcntl04 fcntl04
fcntl04_64 fcntl04_64
fcntl05 fcntl05
fcntl05_64 fcntl05_64
fcntl07 fcntl07
fcntl07_64 fcntl07_64
fcntl08 fcntl08
fcntl08_64 fcntl08_64
fcntl09 fcntl09
fcntl09_64 fcntl09_64
fcntl10 fcntl10
fcntl10_64 fcntl10_64
fcntl11 fcntl11
fcntl11_64 fcntl11_64
fcntl12 fcntl12
fcntl12_64 fcntl12_64
fcntl13 fcntl13
fcntl13_64 fcntl13_64
fcntl14 fcntl14
fcntl14_64 fcntl14_64
fcntl15 fcntl15
fcntl15_64 fcntl15_64
fcntl16 fcntl16
fcntl16_64 fcntl16_64
fcntl17 fcntl17
fcntl17_64 fcntl17_64
fcntl18 fcntl18
fcntl18_64 fcntl18_64
fcntl19 fcntl19
fcntl19_64 fcntl19_64
fcntl20 fcntl20
fcntl20_64 fcntl20_64
fcntl21 fcntl21
fcntl21_64 fcntl21_64
fcntl22 fcntl22
fcntl22_64 fcntl22_64
fcntl23 fcntl23
fcntl23_64 fcntl23_64
fcntl24 fcntl24
fcntl24_64 fcntl24_64
fcntl25 fcntl25
fcntl25_64 fcntl25_64
fcntl26 fcntl26
fcntl26_64 fcntl26_64
fcntl27 fcntl27
fcntl27_64 fcntl27_64
fcntl28 fcntl28
fcntl28_64 fcntl28_64
fcntl29 fcntl29
fcntl29_64 fcntl29_64
fcntl30 fcntl30
fcntl30_64 fcntl30_64
fcntl31 fcntl31
fcntl31_64 fcntl31_64
fcntl32 fcntl32
fcntl32_64 fcntl32_64
fcntl33 fcntl33
fcntl33_64 fcntl33_64
fcntl34 fcntl34
fcntl34_64 fcntl34_64
fcntl35 fcntl35
fcntl35_64 fcntl35_64
fcntl36 fcntl36
fcntl36_64 fcntl36_64
fcntl37 fcntl37
fcntl37_64 fcntl37_64
fcntl38 fcntl38
fcntl38_64 fcntl38_64
fcntl39 fcntl39
fcntl39_64 fcntl39_64

fdatasync01 fdatasync01
fdatasync02 fdatasync02
fdatasync03 fdatasync03

fgetxattr01 fgetxattr01
fgetxattr02 fgetxattr02
fgetxattr03 fgetxattr03

finit_module01 finit_module01
finit_module02 finit_module02

flistxattr01 flistxattr01
flistxattr02 flistxattr02
flistxattr03 flistxattr03

flock01 flock01
flock02 flock02
flock03 flock03
flock04 flock04
flock06 flock06

fmtmsg01 fmtmsg01

fork01 fork01
fork03 fork03
fork04 fork04
fork05 fork05
fork06 fork06
fork07 fork07
fork08 fork08
fork09 fork09
fork10 fork10
fork11 fork11
fork13 fork13
fork14 fork14

fpathconf01 fpathconf01

fremovexattr01 fremovexattr01
fremovexattr02 fremovexattr02

fsconfig01 fsconfig01
fsconfig02 fsconfig02
fsconfig03 fsconfig03

fsmount01 fsmount01
fsmount02 fsmount02

fsopen01 fsopen01
fsopen02 fsopen02

fspick01 fspick01
fspick02 fspick02

fstat02 fstat02
fstat02_64 fstat02_64
fstat03 fstat03
fstat03_64 fstat03_64

#fstatat64/newfstatat test cases
fstatat01 fstatat01

fstatfs01 fstatfs01
fstatfs01_64 fstatfs01_64
fstatfs02 fstatfs02
fstatfs02_64 fstatfs02_64

fsync01 fsync01
fsync02 fsync02
fsync03 fsync03
fsync04 fsync04

ftruncate01 ftruncate01
ftruncate01_64 ftruncate01_64
ftruncate03 ftruncate03
ftruncate03_64 ftruncate03_64
ftruncate04 ftruncate04
ftruncate04_64 ftruncate04_64

#futimesat test cases
futimesat01 futimesat01

getcontext01 getcontext01

getcpu01 getcpu01

getcwd01 getcwd01
getcwd02 getcwd02
getcwd03 getcwd03
getcwd04 getcwd04

getdents01 getdents01
getdents02 getdents02

getdomainname01 getdomainname01

getdtablesize01 getdtablesize01

getegid01 getegid01
getegid01_16 getegid01_16
getegid02 getegid02
getegid02_16 getegid02_16

geteuid01 geteuid01
geteuid01_16 geteuid01_16
geteuid02 geteuid02
geteuid02_16 geteuid02_16

getgid01 getgid01
getgid01_16 getgid01_16
getgid03 getgid03
getgid03_16 getgid03_16

getgroups01 getgroups01
getgroups01_16 getgroups01_16
getgroups03 getgroups03
getgroups03_16 getgroups03_16

gethostbyname_r01 gethostbyname_r01

gethostid01 gethostid01

gethostname01 gethostname01

getitimer01 getitimer01
getitimer02 getitimer02

getpagesize01 getpagesize01

getpeername01 getpeername01

getpgid01 getpgid01
getpgid02 getpgid02

getpgrp01 getpgrp01

getpid01 getpid01
getpid02 getpid02

getppid01 getppid01
getppid02 getppid02

getpriority01 getpriority01
getpriority02 getpriority02

getrandom01 getrandom01
getrandom02 getrandom02
getrandom03 getrandom03
getrandom04 getrandom04

getresgid01 getresgid01
getresgid01_16 getresgid01_16
getresgid02 getresgid02
getresgid02_16 getresgid02_16
getresgid03 getresgid03
getresgid03_16 getresgid03_16

getresuid01 getresuid01
getresuid01_16 getresuid01_16
getresuid02 getresuid02
getresuid02_16 getresuid02_16
getresuid03 getresuid03
getresuid03_16 getresuid03_16

getrlimit01 getrlimit01
getrlimit02 getrlimit02
getrlimit03 getrlimit03

get_mempolicy01 get_mempolicy01
get_mempolicy02 get_mempolicy02
get_robust_list01 get_robust_list01

getrusage01 getrusage01
getrusage02 getrusage02
getrusage03 getrusage03
getrusage04 getrusage04

getsid01 getsid01
getsid02 getsid02

getsockname01 getsockname01

getsockopt01 getsockopt01
getsockopt02 getsockopt02

gettid01 gettid01

gettimeofday01 gettimeofday01
gettimeofday02 gettimeofday02

getuid01 getuid01
getuid01_16 getuid01_16
getuid03 getuid03
getuid03_16 getuid03_16

getxattr01 getxattr01
getxattr02 getxattr02
getxattr03 getxattr03
getxattr04 getxattr04
getxattr05 getxattr05

init_module01 init_module01
init_module02 init_module02

#Needs tty device.
#ioctl02 ioctl02 -D /dev/tty0

# Introducing ioctl tests for all /dev/tty* devices
ioctl01      ioctl01
ioctl02      test_ioctl
ioctl03      ioctl03
ioctl04      ioctl04
ioctl05      ioctl05
ioctl06      ioctl06
ioctl07      ioctl07
ioctl08      ioctl08
ioctl09      ioctl09

ioctl_loop01 ioctl_loop01
ioctl_loop02 ioctl_loop02
ioctl_loop03 ioctl_loop03
ioctl_loop04 ioctl_loop04
ioctl_loop05 ioctl_loop05
ioctl_loop06 ioctl_loop06
ioctl_loop07 ioctl_loop07

ioctl_ns01 ioctl_ns01
ioctl_ns02 ioctl_ns02
ioctl_ns03 ioctl_ns03
ioctl_ns04 ioctl_ns04
ioctl_ns05 ioctl_ns05
ioctl_ns06 ioctl_ns06
ioctl_ns07 ioctl_ns07

ioctl_sg01 ioctl_sg01

inotify_init1_01 inotify_init1_01
inotify_init1_02 inotify_init1_02

inotify01 inotify01
inotify02 inotify02
inotify03 inotify03
inotify04 inotify04
inotify05 inotify05
inotify06 inotify06
inotify07 inotify07
inotify08 inotify08
inotify09 inotify09
inotify10 inotify10
inotify11 inotify11
inotify12 inotify12

fanotify01 fanotify01
fanotify02 fanotify02
fanotify03 fanotify03
fanotify04 fanotify04
fanotify05 fanotify05
fanotify06 fanotify06
fanotify07 fanotify07
fanotify08 fanotify08
fanotify09 fanotify09
fanotify10 fanotify10
fanotify11 fanotify11
fanotify12 fanotify12
fanotify13 fanotify13
fanotify14 fanotify14
fanotify15 fanotify15
fanotify16 fanotify16
fanotify17 fanotify17
fanotify18 fanotify18
fanotify19 fanotify19
fanotify20 fanotify20
fanotify21 fanotify21
fanotify22 fanotify22
fanotify23 fanotify23

ioperm01 ioperm01
ioperm02 ioperm02

iopl01 iopl01
iopl02 iopl02

ioprio_get01 ioprio_get01
ioprio_set01 ioprio_set01
ioprio_set02 ioprio_set02
ioprio_set03 ioprio_set03

io_cancel01 io_cancel01
io_cancel02 io_cancel02
io_destroy01 io_destroy01
io_destroy02 io_destroy02
io_getevents01 io_getevents01
io_getevents02 io_getevents02

io_pgetevents01 io_pgetevents01
io_pgetevents02 io_pgetevents02

io_setup01 io_setup01
io_setup02 io_setup02
io_submit01 io_submit01
io_submit02 io_submit02
io_submit03 io_submit03

keyctl01 keyctl01
keyctl02 keyctl02
keyctl03 keyctl03
keyctl04 keyctl04
keyctl05 keyctl05
keyctl06 keyctl06
keyctl07 keyctl07
keyctl08 keyctl08
keyctl09 keyctl09

kcmp01 kcmp01
kcmp02 kcmp02
kcmp03 kcmp03

kill02 kill02
kill03 kill03
kill05 kill05
kill06 kill06
kill07 kill07
kill08 kill08
kill09 kill09
kill10 kill10
kill11 kill11
kill12 kill12
kill13 kill13

lchown01 lchown01
lchown01_16 lchown01_16
lchown02  lchown02
lchown03  lchown03
lchown02_16 lchown02_16
lchown03_16 lchown03_16

lgetxattr01 lgetxattr01
lgetxattr02 lgetxattr02

link01 symlink01 -T link01
link02 link02
link03 link03
link04 link04
link05 link05
link08 link08

#linkat test cases
linkat01 linkat01
linkat02 linkat02

listen01 listen01

listxattr01 listxattr01
listxattr02 listxattr02
listxattr03 listxattr03

llistxattr01 llistxattr01
llistxattr02 llistxattr02
llistxattr03 llistxattr03

llseek01 llseek01
llseek02 llseek02
llseek03 llseek03

lremovexattr01 lremovexattr01

lseek01 lseek01
lseek02 lseek02
lseek07 lseek07
lseek11 lseek11

lstat01A symlink01 -T lstat01
lstat01A_64 symlink01 -T lstat01_64
lstat01 lstat01
lstat01_64 lstat01_64
lstat02 lstat02
lstat02_64 lstat02_64

mallinfo02 mallinfo02

mallinfo2_01 mallinfo2_01

mallopt01 mallopt01

mbind01 mbind01
mbind02 mbind02
mbind03 mbind03
mbind04 mbind04

memset01 memset01
memcmp01 memcmp01
memcpy01 memcpy01

migrate_pages01 migrate_pages01
migrate_pages02 migrate_pages02
migrate_pages03 migrate_pages03

mlockall01 mlockall01
mlockall02 mlockall02
mlockall03 mlockall03

mkdir02 mkdir02
mkdir03 mkdir03
mkdir04 mkdir04
mkdir05 mkdir05
mkdir05A symlink01 -T mkdir05
mkdir09 mkdir09

#mkdirat test cases
mkdirat01 mkdirat01
mkdirat02 mkdirat02

mknod01 mknod01
mknod02 mknod02
mknod03 mknod03
mknod04 mknod04
mknod05 mknod05
mknod06 mknod06
mknod07 mknod07
mknod08 mknod08
mknod09 mknod09

#mknodat test cases
mknodat01 mknodat01
mknodat02 mknodat02

mlock01 mlock01
mlock02 mlock02
mlock03 mlock03 -i 20
mlock04 mlock04

mlock201 mlock201
mlock202 mlock202
mlock203 mlock203

qmm01 mmap001 -m 1
mmap01 mmap01
mmap02 mmap02
mmap03 mmap03
mmap04 mmap04
mmap05 mmap05
mmap06 mmap06
mmap08 mmap08
mmap09 mmap09
mmap12 mmap12
mmap13 mmap13
mmap14 mmap14
# test is broken, mask it for now.
#mmap11 mmap11 -i 30000
mmap15 mmap15
mmap16 mmap16
mmap17 mmap17
mmap18 mmap18
mmap19 mmap19
mmap20 mmap20

modify_ldt01 modify_ldt01
modify_ldt02 modify_ldt02
modify_ldt03 modify_ldt03

mount01 mount01
mount02 mount02
mount03 mount03
mount04 mount04
mount05 mount05
mount06 mount06
mount07 mount07

mount_setattr01 mount_setattr01

move_mount01 move_mount01
move_mount02 move_mount02

move_pages01 move_pages01
move_pages02 move_pages02
move_pages03 move_pages03
move_pages04 move_pages04
move_pages05 move_pages05
move_pages06 move_pages06
move_pages07 move_pages07
move_pages09 move_pages09
move_pages10 move_pages10
move_pages11 move_pages11
move_pages12 move_pages12

mprotect01 mprotect01
mprotect02 mprotect02
mprotect03 mprotect03
mprotect04 mprotect04
mprotect05 mprotect05

pkey01 pkey01

mq_notify01 mq_notify01
mq_notify02 mq_notify02
mq_notify03 mq_notify03
mq_open01 mq_open01
mq_timedreceive01 mq_timedreceive01
mq_timedsend01 mq_timedsend01
mq_unlink01 mq_unlink01

mremap01 mremap01
mremap02 mremap02
mremap03 mremap03
mremap04 mremap04
mremap05 mremap05
mremap06 mremap06

msgctl01 msgctl01
msgctl02 msgctl02
msgctl03 msgctl03
msgctl04 msgctl04
msgctl05 msgctl05
msgctl06 msgctl06
msgstress01 msgstress01
msgstress02 msgstress02
msgstress03 msgstress03
msgstress04 msgstress04
msgctl12 msgctl12

msgget01 msgget01
msgget02 msgget02
msgget03 msgget03
msgget04 msgget04
msgget05 msgget05

msgrcv01 msgrcv01
msgrcv02 msgrcv02
msgrcv03 msgrcv03
msgrcv05 msgrcv05
msgrcv06 msgrcv06
msgrcv07 msgrcv07
msgrcv08 msgrcv08

msgsnd01 msgsnd01
msgsnd02 msgsnd02
msgsnd05 msgsnd05
msgsnd06 msgsnd06

msync01 msync01
msync02 msync02
msync03 msync03
msync04 msync04

munlock01 munlock01
munlock02 munlock02

munlockall01 munlockall01

munmap01 munmap01
munmap02 munmap02
munmap03 munmap03

nanosleep01 nanosleep01
nanosleep02 nanosleep02
nanosleep04 nanosleep04

name_to_handle_at01 name_to_handle_at01
name_to_handle_at02 name_to_handle_at02

nftw01 nftw01
nftw6401 nftw6401

nice01 nice01
nice02 nice02
nice03 nice03
nice04 nice04
nice05 nice05

open01 open01
open01A symlink01 -T open01
open02 open02
open03 open03
open04 open04
open06 open06
open07 open07
open08 open08
open09 open09
open10 open10
open11 open11
open12 open12
open13 open13
open14 open14

openat01 openat01
openat02 openat02
openat03 openat03
openat04 openat04

openat201 openat201
openat202 openat202
openat203 openat203

open_by_handle_at01 open_by_handle_at01
open_by_handle_at02 open_by_handle_at02

open_tree01 open_tree01
open_tree02 open_tree02

mincore01 mincore01
mincore02 mincore02
mincore03 mincore03
mincore04 mincore04

madvise01 madvise01
madvise02 madvise02
madvise03 madvise03
madvise05 madvise05
madvise06 madvise06
madvise07 madvise07
madvise08 madvise08
madvise09 madvise09
madvise10 madvise10
madvise11 madvise11

newuname01 newuname01

pathconf01 pathconf01

pause01 pause01
pause02 pause02
pause03 pause03

personality01 personality01
personality02 personality02

pidfd_getfd01 pidfd_getfd01
pidfd_getfd02 pidfd_getfd02

pidfd_open01 pidfd_open01
pidfd_open02 pidfd_open02
pidfd_open03 pidfd_open03
pidfd_open04 pidfd_open04

pidfd_send_signal01 pidfd_send_signal01
pidfd_send_signal02 pidfd_send_signal02
pidfd_send_signal03 pidfd_send_signal03

pipe01 pipe01
pipe02 pipe02
pipe03 pipe03
pipe04 pipe04
pipe05 pipe05
pipe06 pipe06
pipe07 pipe07
pipe08 pipe08
pipe09 pipe09
pipe10 pipe10
pipe11 pipe11
pipe12 pipe12
pipe13 pipe13
pipe14 pipe14

pipe2_01 pipe2_01
pipe2_02 pipe2_02
pipe2_04 pipe2_04

pivot_root01 pivot_root01

poll01 poll01
poll02 poll02

ppoll01 ppoll01

prctl01 prctl01
prctl02 prctl02
prctl03 prctl03
prctl04 prctl04
prctl05 prctl05
prctl06 prctl06
prctl07 prctl07
prctl08 prctl08
prctl09 prctl09
prctl10 prctl10

pread01 pread01
pread01_64 pread01_64
pread02 pread02
pread02_64 pread02_64

preadv01 preadv01
preadv01_64 preadv01_64
preadv02 preadv02
preadv02_64 preadv02_64
preadv03 preadv03
preadv03_64 preadv03_64

preadv201 preadv201
preadv201_64 preadv201_64
preadv202 preadv202
preadv202_64 preadv202_64
preadv203 preadv203
preadv203_64 preadv203_64

profil01 profil01

process_vm_readv01 process_vm01 -r
process_vm_readv02 process_vm_readv02
process_vm_readv03 process_vm_readv03
process_vm_writev01 process_vm01
process_vm_writev02 process_vm_writev02

process_madvise01 process_madvise01

prot_hsymlinks prot_hsymlinks
dirtyc0w dirtyc0w
dirtyc0w_shmem dirtyc0w_shmem
dirtypipe dirtypipe

pselect01 pselect01
pselect01_64 pselect01_64
pselect02 pselect02
pselect02_64 pselect02_64
pselect03 pselect03
pselect03_64 pselect03_64

ptrace01 ptrace01
ptrace02 ptrace02
ptrace03 ptrace03
ptrace04 ptrace04
ptrace05 ptrace05
# Broken test; See: testcases/kernel/syscalls/ptrace/Makefile for more details.
#ptrace06 ptrace06
ptrace07 ptrace07
ptrace08 ptrace08
ptrace09 ptrace09
ptrace10 ptrace10
ptrace11 ptrace11

pwrite01 pwrite01
pwrite02 pwrite02
pwrite03 pwrite03
pwrite04 pwrite04

pwrite01_64 pwrite01_64
pwrite02_64 pwrite02_64
pwrite03_64 pwrite03_64
pwrite04_64 pwrite04_64

pwritev01 pwritev01
pwritev01_64 pwritev01_64
pwritev02 pwritev02
pwritev02_64 pwritev02_64
pwritev03 pwritev03
pwritev03_64 pwritev03_64

pwritev201 pwritev201
pwritev201_64 pwritev201_64
pwritev202 pwritev202
pwritev202_64 pwritev202_64

quotactl01 quotactl01
quotactl02 quotactl02
quotactl03 quotactl03
quotactl04 quotactl04
quotactl05 quotactl05
quotactl06 quotactl06
quotactl07 quotactl07
quotactl08 quotactl08
quotactl09 quotactl09

read01 read01
read02 read02
read03 read03
read04 read04

readahead01 readahead01
readahead02 readahead02

readdir01 readdir01
readdir21 readdir21

readlink01A symlink01 -T readlink01
readlink01 readlink01
readlink03 readlink03

#readlinkat test cases
readlinkat01 readlinkat01
readlinkat02 readlinkat02

readv01 readv01
readv02 readv02

realpath01 realpath01

reboot01 reboot01
reboot02 reboot02

recv01 recv01

recvfrom01 recvfrom01

recvmsg01 recvmsg01
recvmsg02 recvmsg02
recvmsg03 recvmsg03

recvmmsg01 recvmmsg01

remap_file_pages01 remap_file_pages01
remap_file_pages02 remap_file_pages02

removexattr01 removexattr01
removexattr02 removexattr02

rename01 rename01
rename01A symlink01 -T rename01
rename03 rename03
rename04 rename04
rename05 rename05
rename06 rename06
rename07 rename07
rename08 rename08
rename09 rename09
rename10 rename10
rename11 rename11
rename12 rename12
rename13 rename13
rename14 rename14

#renameat test cases
renameat01 renameat01

renameat201 renameat201
renameat202 renameat202 -i 10

request_key01 request_key01
request_key02 request_key02
request_key03 request_key03
request_key04 request_key04
request_key05 request_key05

rmdir01 rmdir01
rmdir02 rmdir02
rmdir03 rmdir03
rmdir03A symlink01 -T rmdir03

rt_sigaction01 rt_sigaction01
rt_sigaction02 rt_sigaction02
rt_sigaction03 rt_sigaction03
rt_sigpending02 rt_sigpending02
rt_sigprocmask01 rt_sigprocmask01
rt_sigprocmask02 rt_sigprocmask02
rt_sigqueueinfo01 rt_sigqueueinfo01
rt_sigsuspend01 rt_sigsuspend01
rt_sigtimedwait01 rt_sigtimedwait01
rt_tgsigqueueinfo01 rt_tgsigqueueinfo01

sbrk01 sbrk01
sbrk02 sbrk02
sbrk03 sbrk03

sched_get_priority_max01 sched_get_priority_max01
sched_get_priority_max02 sched_get_priority_max02

sched_get_priority_min01 sched_get_priority_min01
sched_get_priority_min02 sched_get_priority_min02

sched_getparam01 sched_getparam01
sched_getparam03 sched_getparam03

sched_rr_get_interval01 sched_rr_get_interval01
sched_rr_get_interval02 sched_rr_get_interval02
sched_rr_get_interval03 sched_rr_get_interval03

sched_setparam01 sched_setparam01
sched_setparam02 sched_setparam02
sched_setparam03 sched_setparam03
sched_setparam04 sched_setparam04
sched_setparam05 sched_setparam05

sched_getscheduler01 sched_getscheduler01
sched_getscheduler02 sched_getscheduler02

sched_setscheduler01 sched_setscheduler01
sched_setscheduler02 sched_setscheduler02
sched_setscheduler03 sched_setscheduler03

sched_yield01 sched_yield01

sched_setaffinity01 sched_setaffinity01
sched_getaffinity01 sched_getaffinity01

sched_setattr01 sched_setattr01
sched_getattr01 sched_getattr01
sched_getattr02 sched_getattr02

select01 select01
select01_SYS__newselect select01_SYS__newselect
select01_SYS_select select01_SYS_select
select01_SYS_pselect6 select01_SYS_pselect6
select02 select02
select02_SYS__newselect select02_SYS__newselect
select02_SYS_select select02_SYS_select
select02_SYS_pselect6 select02_SYS_pselect6
select03 select03
select03_SYS__newselect select03_SYS__newselect
select03_SYS_select select03_SYS_select
select03_SYS_pselect6 select03_SYS_pselect6
select04 select04
select04_SYS__newselect select04_SYS__newselect
select04_SYS_select select04_SYS_select
select04_SYS_pselect6 select04_SYS_pselect6

semctl01 semctl01
semctl02 semctl02
semctl03 semctl03
semctl04 semctl04
semctl05 semctl05
semctl06 semctl06
semctl07 semctl07
semctl08 semctl08
semctl09 semctl09

semget01 semget01
semget02 semget02
semget05 semget05

semop01 semop01
semop02 semop02
semop03 semop03
semop04 semop04
semop05 semop05

send01 send01
send02 send02

sendfile02 sendfile02
sendfile02_64 sendfile02_64
sendfile03 sendfile03
sendfile03_64 sendfile03_64
sendfile04 sendfile04
sendfile04_64 sendfile04_64
sendfile05 sendfile05
sendfile05_64 sendfile05_64
sendfile06 sendfile06
sendfile06_64 sendfile06_64
sendfile07 sendfile07
sendfile07_64 sendfile07_64
sendfile08 sendfile08
sendfile08_64 sendfile08_64
sendfile09 sendfile09
sendfile09_64 sendfile09_64


sendmsg01 sendmsg01
sendmsg02 sendmsg02
sendmsg03 sendmsg03

sendmmsg01 sendmmsg01
sendmmsg02 sendmmsg02

sendto01 sendto01
sendto02 sendto02
sendto03 sendto03

set_mempolicy01 set_mempolicy01
set_mempolicy02 set_mempolicy02
set_mempolicy03 set_mempolicy03
set_mempolicy04 set_mempolicy04

set_robust_list01 set_robust_list01
set_thread_area01 set_thread_area01
set_tid_address01 set_tid_address01

setdomainname01	setdomainname01
setdomainname02	setdomainname02
setdomainname03	setdomainname03

setfsgid01 setfsgid01
setfsgid01_16 setfsgid01_16
setfsgid02 setfsgid02
setfsgid02_16 setfsgid02_16
setfsgid03 setfsgid03
setfsgid03_16 setfsgid03_16

setfsuid01 setfsuid01
setfsuid01_16 setfsuid01_16
setfsuid02 setfsuid02
setfsuid02_16 setfsuid02_16
setfsuid03 setfsuid03
setfsuid03_16 setfsuid03_16
setfsuid04 setfsuid04
setfsuid04_16 setfsuid04_16

setgid01 setgid01
setgid01_16 setgid01_16
setgid02 setgid02
setgid02_16 setgid02_16
setgid03 setgid03
setgid03_16 setgid03_16

setegid01 setegid01
setegid02 setegid02

sgetmask01 sgetmask01

setgroups01 setgroups01
setgroups01_16 setgroups01_16
setgroups02 setgroups02
setgroups02_16 setgroups02_16
setgroups03 setgroups03
setgroups03_16 setgroups03_16

sethostname01 sethostname01
sethostname02 sethostname02
sethostname03 sethostname03

setitimer01 setitimer01
setitimer02 setitimer02

setns01 setns01
setns02 setns02

setpgid01 setpgid01
setpgid02 setpgid02
setpgid03 setpgid03

setpgrp01 setpgrp01
setpgrp02 setpgrp02

setpriority01 setpriority01
setpriority02 setpriority02

setregid01 setregid01
setregid01_16 setregid01_16
setregid02 setregid02
setregid02_16 setregid02_16
setregid03 setregid03
setregid03_16 setregid03_16
setregid04 setregid04
setregid04_16 setregid04_16

setresgid01 setresgid01
setresgid01_16 setresgid01_16
setresgid02 setresgid02
setresgid02_16 setresgid02_16
setresgid03 setresgid03
setresgid03_16 setresgid03_16
setresgid04 setresgid04
setresgid04_16 setresgid04_16

setresuid01 setresuid01
setresuid01_16 setresuid01_16
setresuid02 setresuid02
setresuid02_16 setresuid02_16
setresuid03 setresuid03
setresuid03_16 setresuid03_16
setresuid04 setresuid04
setresuid04_16 setresuid04_16
setresuid05 setresuid05
setresuid05_16 setresuid05_16

setreuid01 setreuid01
setreuid01_16 setreuid01_16
setreuid02 setreuid02
setreuid02_16 setreuid02_16
setreuid03 setreuid03
setreuid03_16 setreuid03_16
setreuid04 setreuid04
setreuid04_16 setreuid04_16
setreuid05 setreuid05
setreuid05_16 setreuid05_16
setreuid06 setreuid06
setreuid06_16 setreuid06_16
setreuid07 setreuid07
setreuid07_16 setreuid07_16

setrlimit01 setrlimit01
setrlimit02 setrlimit02
setrlimit03 setrlimit03
setrlimit04 setrlimit04
setrlimit05 setrlimit05
setrlimit06 setrlimit06

setsid01 setsid01

setsockopt01 setsockopt01
setsockopt02 setsockopt02
setsockopt03 setsockopt03
setsockopt04 setsockopt04
setsockopt05 setsockopt05
setsockopt06 setsockopt06
setsockopt07 setsockopt07
setsockopt08 setsockopt08
setsockopt09 setsockopt09

settimeofday01 settimeofday01
settimeofday02 settimeofday02

setuid01 setuid01
setuid01_16 setuid01_16
setuid03 setuid03
setuid03_16 setuid03_16
setuid04 setuid04
setuid04_16 setuid04_16

setxattr01 setxattr01
setxattr02 setxattr02
setxattr03 setxattr03

shmat01 shmat01
shmat02 shmat02
shmat03 shmat03

shmctl01 shmctl01
shmctl02 shmctl02
shmctl03 shmctl03
shmctl04 shmctl04
shmctl05 shmctl05
shmctl06 shmctl06
shmctl07 shmctl07
shmctl08 shmctl08

shmdt01 shmdt01
shmdt02 shmdt02

shmget02 shmget02
shmget03 shmget03
shmget04 shmget04
shmget05 shmget05
shmget06 shmget06

sigaction01 sigaction01
sigaction02 sigaction02

sigaltstack01 sigaltstack01
sigaltstack02 sigaltstack02


sighold02 sighold02

signal01 signal01
signal02 signal02
signal03 signal03
signal04 signal04
signal05 signal05
signal06 signal06

signalfd01 signalfd01

signalfd4_01 signalfd4_01
signalfd4_02 signalfd4_02

sigpending02 sigpending02

sigprocmask01 sigprocmask01

sigrelse01 sigrelse01

sigsuspend01 sigsuspend01

sigtimedwait01 sigtimedwait01

sigwait01 sigwait01
sigwaitinfo01 sigwaitinfo01

socket01 socket01
socket02 socket02

socketcall01 socketcall01
socketcall02 socketcall02
socketcall03 socketcall03

socketpair01 socketpair01
socketpair02 socketpair02

sockioctl01 sockioctl01

splice01 splice01
splice02 splice02
splice03 splice03
splice04 splice04
splice05 splice05

tee01 tee01
tee02 tee02

ssetmask01 ssetmask01

stat01 stat01
stat01_64 stat01_64
stat02 stat02
stat02_64 stat02_64
stat03 stat03
stat03_64 stat03_64
stat04 symlink01 -T stat04
stat04_64 symlink01 -T stat04_64

statfs01 statfs01
statfs01_64 statfs01_64
statfs02 statfs02
statfs02_64 statfs02_64
statfs03 statfs03
statfs03_64 statfs03_64

statvfs01 statvfs01
statvfs02 statvfs02

stime01 stime01
stime02 stime02

string01 string01

swapoff01 swapoff01
swapoff02 swapoff02

swapon01 swapon01
swapon02 swapon02
swapon03 swapon03

#Exclusive syscall() for POWER6 machines only
switch01 endian_switch01

symlink01 symlink01
symlink02 symlink02
symlink03 symlink03
symlink04 symlink04
symlink05 symlink05

#symlinkat test cases
symlinkat01 symlinkat01

sync01 sync01

syncfs01 syncfs01

syncfs01 syncfs01

#testcases for sync_file_range
sync_file_range01 sync_file_range01
sync_file_range02 sync_file_range02

syscall01 syscall01

sysconf01 sysconf01

sysctl01 sysctl01
sysctl03 sysctl03
sysctl04 sysctl04

sysfs01 sysfs01
sysfs02 sysfs02
sysfs03 sysfs03
sysfs04 sysfs04
sysfs05 sysfs05

sysinfo01 sysinfo01
sysinfo02 sysinfo02
sysinfo03 sysinfo03

syslog11 syslog11
syslog12 syslog12

tgkill01 tgkill01
tgkill02 tgkill02
tgkill03 tgkill03

time01 time01

times01 times01
times03 times03

# New syscall support from 2.6.25 kernel onwards

timerfd01 timerfd01
timerfd02 timerfd02
timerfd03 timerfd03
timerfd04 timerfd04
timerfd_create01 timerfd_create01
timerfd_gettime01 timerfd_gettime01
timerfd_settime01 timerfd_settime01
timerfd_settime02 timerfd_settime02

timer_create01 timer_create01
timer_create02 timer_create02
timer_create03 timer_create03

timer_delete01 timer_delete01
timer_delete02 timer_delete02

timer_getoverrun01 timer_getoverrun01
timer_gettime01 timer_gettime01

timer_settime01 timer_settime01
timer_settime02 timer_settime02
timer_settime03 timer_settime03

tkill01 tkill01
tkill02 tkill02

truncate02 truncate02
truncate02_64 truncate02_64
truncate03 truncate03
truncate03_64 truncate03_64

# This syscall is obsolete.  The latest glibc does not even
# include the ulimit.h file anymore.  The test will fail
# because the error handling has been simplified.
#
ulimit01 ulimit01

umask01 umask01

uname01 uname01
uname02 uname02
uname04 uname04

unlink01 symlink01 -T unlink01
unlink05 unlink05
unlink07 unlink07
unlink08 unlink08

#unlinkat test cases
unlinkat01 unlinkat01

unshare01 unshare01
unshare02 unshare02

#
# These tests require an unmounted block device
# to run correctly. Please see individual test
# code for more information.
#
umount01 umount01
umount02 umount02
umount03 umount03

umount2_01 umount2_01
umount2_02 umount2_02

userfaultfd01 userfaultfd01

ustat01 ustat01
ustat02 ustat02

utime01 utime01
utime01A symlink01 -T utime01
utime02 utime02
utime03 utime03
utime04 utime04
utime05 utime05
utime06 utime06

utimes01 utimes01

# Introduced from Kernel 2.6.22 onwards
utimensat01 utimensat01

vfork01 vfork01
vfork02 vfork02

vhangup01 vhangup01
vhangup02 vhangup02

#vmsplice test cases
vmsplice01 vmsplice01
vmsplice02 vmsplice02
vmsplice03 vmsplice03
vmsplice04 vmsplice04

wait01 wait01
wait02 wait02

wait401 wait401
wait402 wait402
wait403 wait403

waitpid01 waitpid01
waitpid02 waitpid02
waitpid03 waitpid03
waitpid04 waitpid04
waitpid05 waitpid05
waitpid06 waitpid06
waitpid07 waitpid07
waitpid08 waitpid08
waitpid09 waitpid09
waitpid10 waitpid10
waitpid11 waitpid11
waitpid12 waitpid12
waitpid13 waitpid13

waitid01 waitid01
waitid02 waitid02
waitid03 waitid03
waitid04 waitid04
waitid05 waitid05
waitid06 waitid06
waitid07 waitid07
waitid08 waitid08
waitid09 waitid09
waitid10 waitid10
waitid11 waitid11

write01 write01
write02 write02
write03 write03
write04 write04
write05 write05
write06 write06

writev01 writev01
writev02 writev02
writev03 writev03
writev05 writev05
writev06 writev06
writev07 writev07

perf_event_open01 perf_event_open01
perf_event_open02 perf_event_open02

futex_cmp_requeue01 futex_cmp_requeue01
futex_cmp_requeue02 futex_cmp_requeue02
futex_wait01 futex_wait01
futex_wait02 futex_wait02
futex_wait03 futex_wait03
futex_wait04 futex_wait04
futex_wait05 futex_wait05
futex_waitv01 futex_waitv01
futex_waitv02 futex_waitv02
futex_waitv03 futex_waitv03
futex_wake01 futex_wake01
futex_wake02 futex_wake02
futex_wake03 futex_wake03
futex_wake04 futex_wake04
futex_wait_bitset01 futex_wait_bitset01

memfd_create01 memfd_create01
memfd_create02 memfd_create02
memfd_create03 memfd_create03
memfd_create04 memfd_create04

copy_file_range01 copy_file_range01
copy_file_range02 copy_file_range02
copy_file_range03 copy_file_range03

statx01 statx01
statx02 statx02
statx03 statx03
statx04 statx04
statx05 statx05
statx06 statx06
statx07 statx07
statx08 statx08
statx09 statx09
statx10 statx10
statx11 statx11
statx12 statx12

membarrier01 membarrier01

io_uring01 io_uring01
io_uring02 io_uring02

# Tests below may cause kernel memory leak
perf_event_open03 perf_event_open03