summaryrefslogtreecommitdiff
path: root/usr/src/pkg/manifests/system-test-zfstest.mf
blob: 51a81cbc04cff69ad265a50a2be12c03dbd1050f (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
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#

#
# Copyright (c) 2012, 2017 by Delphix. All rights reserved.
# Copyright 2015, 2016 Nexenta Systems, Inc.  All rights reserved.
# Copyright 2016, OmniTI Computer Consulting, Inc. All rights reserved.
# Copyright 2020 Joyent, Inc.
# Copyright (c) 2018 Datto Inc.
#

set name=pkg.fmri value=pkg:/system/test/zfstest@$(PKGVERS)
set name=pkg.description value="ZFS Test Suite"
set name=pkg.summary value="ZFS Functional and Stress Tests"
set name=info.classification \
    value=org.opensolaris.category.2008:Development/System
set name=variant.arch value=$(ARCH)
dir path=opt/zfs-tests
dir path=opt/zfs-tests/bin
dir path=opt/zfs-tests/callbacks
dir path=opt/zfs-tests/include
dir path=opt/zfs-tests/runfiles
dir path=opt/zfs-tests/tests
dir path=opt/zfs-tests/tests/functional
dir path=opt/zfs-tests/tests/functional/acl
dir path=opt/zfs-tests/tests/functional/acl/cifs
dir path=opt/zfs-tests/tests/functional/acl/nontrivial
dir path=opt/zfs-tests/tests/functional/acl/trivial
dir path=opt/zfs-tests/tests/functional/alloc_class
dir path=opt/zfs-tests/tests/functional/atime
dir path=opt/zfs-tests/tests/functional/bootfs
dir path=opt/zfs-tests/tests/functional/cache
dir path=opt/zfs-tests/tests/functional/cachefile
dir path=opt/zfs-tests/tests/functional/casenorm
dir path=opt/zfs-tests/tests/functional/channel_program
dir path=opt/zfs-tests/tests/functional/channel_program/lua_core
dir path=opt/zfs-tests/tests/functional/channel_program/synctask_core
dir path=opt/zfs-tests/tests/functional/checksum
dir path=opt/zfs-tests/tests/functional/clean_mirror
dir path=opt/zfs-tests/tests/functional/cli_root
dir path=opt/zfs-tests/tests/functional/cli_root/zdb
dir path=opt/zfs-tests/tests/functional/cli_root/zfs
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_clone
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_copies
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_create
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_diff
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_get
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_inherit
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_mount
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_program
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_promote
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_property
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_receive
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_remap
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_rename
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_reservation
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_send
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_set
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_share
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_unload-key
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_unshare
dir path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade
dir path=opt/zfs-tests/tests/functional/cli_root/zpool
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_add
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_attach
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_clear
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_create
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_destroy
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_detach
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_expand
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_export
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_get
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_history
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_import
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_import/blockfiles
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_labelclear
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_offline
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_online
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_remove
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_replace
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_resilver
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_set
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_status
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_sync
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_trim
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade
dir path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles
dir path=opt/zfs-tests/tests/functional/cli_user
dir path=opt/zfs-tests/tests/functional/cli_user/misc
dir path=opt/zfs-tests/tests/functional/cli_user/zfs_list
dir path=opt/zfs-tests/tests/functional/cli_user/zpool_iostat
dir path=opt/zfs-tests/tests/functional/cli_user/zpool_list
dir path=opt/zfs-tests/tests/functional/compression
dir path=opt/zfs-tests/tests/functional/ctime
dir path=opt/zfs-tests/tests/functional/delegate
dir path=opt/zfs-tests/tests/functional/devices
dir path=opt/zfs-tests/tests/functional/exec
dir path=opt/zfs-tests/tests/functional/fault
dir path=opt/zfs-tests/tests/functional/features
dir path=opt/zfs-tests/tests/functional/features/async_destroy
dir path=opt/zfs-tests/tests/functional/grow_pool
dir path=opt/zfs-tests/tests/functional/grow_replicas
dir path=opt/zfs-tests/tests/functional/history
dir path=opt/zfs-tests/tests/functional/holes
dir path=opt/zfs-tests/tests/functional/inheritance
dir path=opt/zfs-tests/tests/functional/inuse
dir path=opt/zfs-tests/tests/functional/large_dnode
dir path=opt/zfs-tests/tests/functional/large_files
dir path=opt/zfs-tests/tests/functional/largest_pool
dir path=opt/zfs-tests/tests/functional/libzfs
dir path=opt/zfs-tests/tests/functional/link_count
dir path=opt/zfs-tests/tests/functional/log_spacemap
dir path=opt/zfs-tests/tests/functional/mdb
dir path=opt/zfs-tests/tests/functional/migration
dir path=opt/zfs-tests/tests/functional/mmap
dir path=opt/zfs-tests/tests/functional/mmp
dir path=opt/zfs-tests/tests/functional/mount
dir path=opt/zfs-tests/tests/functional/mv_files
dir path=opt/zfs-tests/tests/functional/nestedfs
dir path=opt/zfs-tests/tests/functional/no_space
dir path=opt/zfs-tests/tests/functional/nopwrite
dir path=opt/zfs-tests/tests/functional/online_offline
dir path=opt/zfs-tests/tests/functional/pool_checkpoint
dir path=opt/zfs-tests/tests/functional/pool_names
dir path=opt/zfs-tests/tests/functional/poolversion
dir path=opt/zfs-tests/tests/functional/privilege
dir path=opt/zfs-tests/tests/functional/projectquota
dir path=opt/zfs-tests/tests/functional/quota
dir path=opt/zfs-tests/tests/functional/raidz
dir path=opt/zfs-tests/tests/functional/redundancy
dir path=opt/zfs-tests/tests/functional/refquota
dir path=opt/zfs-tests/tests/functional/refreserv
dir path=opt/zfs-tests/tests/functional/removal
dir path=opt/zfs-tests/tests/functional/rename_dirs
dir path=opt/zfs-tests/tests/functional/replacement
dir path=opt/zfs-tests/tests/functional/reservation
dir path=opt/zfs-tests/tests/functional/resilver
dir path=opt/zfs-tests/tests/functional/rootpool
dir path=opt/zfs-tests/tests/functional/rsend
dir path=opt/zfs-tests/tests/functional/scrub_mirror
dir path=opt/zfs-tests/tests/functional/slog
dir path=opt/zfs-tests/tests/functional/snapshot
dir path=opt/zfs-tests/tests/functional/snapused
dir path=opt/zfs-tests/tests/functional/sparse
dir path=opt/zfs-tests/tests/functional/threadsappend
dir path=opt/zfs-tests/tests/functional/trim
dir path=opt/zfs-tests/tests/functional/truncate
dir path=opt/zfs-tests/tests/functional/upgrade
dir path=opt/zfs-tests/tests/functional/userquota
dir path=opt/zfs-tests/tests/functional/utils_test
dir path=opt/zfs-tests/tests/functional/vdev_zaps
dir path=opt/zfs-tests/tests/functional/write_dirs
dir path=opt/zfs-tests/tests/functional/xattr
dir path=opt/zfs-tests/tests/functional/zvol
dir path=opt/zfs-tests/tests/functional/zvol/zvol_ENOSPC
dir path=opt/zfs-tests/tests/functional/zvol/zvol_cli
dir path=opt/zfs-tests/tests/functional/zvol/zvol_dump
dir path=opt/zfs-tests/tests/functional/zvol/zvol_misc
dir path=opt/zfs-tests/tests/functional/zvol/zvol_swap
dir path=opt/zfs-tests/tests/longevity
dir path=opt/zfs-tests/tests/perf
dir path=opt/zfs-tests/tests/perf/fio
dir path=opt/zfs-tests/tests/perf/regression
dir path=opt/zfs-tests/tests/perf/scripts
dir path=opt/zfs-tests/tests/stress
dir path=opt/zfs-tests/tests/stress/races
file path=opt/zfs-tests/README mode=0444
file path=opt/zfs-tests/bin/chg_usr_exec mode=0555
file path=opt/zfs-tests/bin/devname2devid mode=0555
file path=opt/zfs-tests/bin/dir_rd_update mode=0555
file path=opt/zfs-tests/bin/dos_ro mode=0555
file path=opt/zfs-tests/bin/file_check mode=0555
file path=opt/zfs-tests/bin/file_trunc mode=0555
file path=opt/zfs-tests/bin/file_write mode=0555
file path=opt/zfs-tests/bin/getholes mode=0555
file path=opt/zfs-tests/bin/has_unmap mode=0555
file path=opt/zfs-tests/bin/largest_file mode=0555
file path=opt/zfs-tests/bin/libzfs_input_check mode=0555
file path=opt/zfs-tests/bin/memory_balloon mode=0555
file path=opt/zfs-tests/bin/mkbusy mode=0555
file path=opt/zfs-tests/bin/mkfiles mode=0555
file path=opt/zfs-tests/bin/mkholes mode=0555
file path=opt/zfs-tests/bin/mktree mode=0555
file path=opt/zfs-tests/bin/mmapwrite mode=0555
file path=opt/zfs-tests/bin/randfree_file mode=0555
file path=opt/zfs-tests/bin/randwritecomp mode=0555
file path=opt/zfs-tests/bin/readmmap mode=0555
file path=opt/zfs-tests/bin/rename_dir mode=0555
file path=opt/zfs-tests/bin/rm_lnkcnt_zero_file mode=0555
file path=opt/zfs-tests/bin/watch_dir mode=0555
file path=opt/zfs-tests/bin/zfstest mode=0555
file path=opt/zfs-tests/callbacks/zfs_dbgmsg mode=0555
file path=opt/zfs-tests/callbacks/zfs_mmp mode=0555
file path=opt/zfs-tests/include/blkdev.shlib mode=0444
file path=opt/zfs-tests/include/commands.cfg mode=0444
file path=opt/zfs-tests/include/default.cfg mode=0444
file path=opt/zfs-tests/include/libtest.shlib mode=0444
file path=opt/zfs-tests/include/math.shlib mode=0444
file path=opt/zfs-tests/include/properties.shlib mode=0444
file path=opt/zfs-tests/include/zpool_script.shlib mode=0444
file path=opt/zfs-tests/runfiles/delphix.run mode=0444
file path=opt/zfs-tests/runfiles/longevity.run mode=0444
file path=opt/zfs-tests/runfiles/omnios.run mode=0444
file path=opt/zfs-tests/runfiles/openindiana.run mode=0444
file path=opt/zfs-tests/runfiles/perf-regression.run mode=0444
file path=opt/zfs-tests/runfiles/smartos.run mode=0444
file path=opt/zfs-tests/runfiles/stress.run mode=0444
file path=opt/zfs-tests/tests/functional/acl/acl.cfg mode=0444
file path=opt/zfs-tests/tests/functional/acl/acl_common.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/acl/cifs/cifs.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/acl/cifs/cifs_attr_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/acl/cifs/cifs_attr_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/acl/cifs/cifs_attr_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/acl/cifs/cifs_attr_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/acl/cifs/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/acl/cifs/setup mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_aclmode_restricted_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_aclmode_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_compact_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_delete_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_inherit_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_inherit_002_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_inherit_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_inherit_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_inherit_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_owner_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_rwacl_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_rwx_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_rwx_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_rwx_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_rwx_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_xattr_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_chmod_xattr_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_cp_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_cp_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_cpio_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_cpio_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_find_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_ls_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_mv_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_tar_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_tar_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_aclmode_restricted_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_chmod_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_compress_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_cp_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_cp_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_cp_003_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_find_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_find_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_ls_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_ls_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_mv_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_pack_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_pax_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_pax_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_pax_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_pax_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_pax_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_pax_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_tar_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/acl/trivial/zfs_acl_tar_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class.cfg mode=0444
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_008_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_009_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_010_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_011_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_012_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/alloc_class_013_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/alloc_class/setup mode=0555
file path=opt/zfs-tests/tests/functional/atime/atime.cfg mode=0444
file path=opt/zfs-tests/tests/functional/atime/atime_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/atime/atime_002_neg mode=0555
file path=opt/zfs-tests/tests/functional/atime/atime_common.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/atime/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/atime/setup mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/bootfs_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/bootfs_002_neg mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/bootfs_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/bootfs_004_neg mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/bootfs_005_neg mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/bootfs_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/bootfs_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/bootfs_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/bootfs/setup mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache.cfg mode=0444
file path=opt/zfs-tests/tests/functional/cache/cache.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/cache/cache_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_004_neg mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_005_neg mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_007_neg mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_008_neg mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_009_pos mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_010_neg mode=0555
file path=opt/zfs-tests/tests/functional/cache/cache_011_pos mode=0555
file path=opt/zfs-tests/tests/functional/cache/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cache/setup mode=0555
file path=opt/zfs-tests/tests/functional/cachefile/cachefile.cfg mode=0444
file path=opt/zfs-tests/tests/functional/cachefile/cachefile.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/cachefile/cachefile_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/cachefile/cachefile_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/cachefile/cachefile_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/cachefile/cachefile_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/case_all_values mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/casenorm.cfg mode=0444
file path=opt/zfs-tests/tests/functional/casenorm/casenorm.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/casenorm/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/insensitive_formd_delete \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/insensitive_formd_lookup \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/insensitive_none_delete \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/insensitive_none_lookup \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/mixed_formd_delete mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/mixed_formd_lookup mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/mixed_formd_lookup_ci \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/mixed_none_delete mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/mixed_none_lookup mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/mixed_none_lookup_ci \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/norm_all_values mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/sensitive_formd_delete \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/sensitive_formd_lookup \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/sensitive_none_delete \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/sensitive_none_lookup \
    mode=0555
file path=opt/zfs-tests/tests/functional/casenorm/setup mode=0555
file path=opt/zfs-tests/tests/functional/channel_program/channel_common.kshlib \
    mode=0555
file path=opt/zfs-tests/tests/functional/channel_program/lua_core/cleanup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/nvlist_to_lua.exe \
    mode=0555
file path=opt/zfs-tests/tests/functional/channel_program/lua_core/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.args_to_lua \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.args_to_lua.out \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.args_to_lua.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.divide_by_zero \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.divide_by_zero.err \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.divide_by_zero.zcp \
    mode=0444
file path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.exists \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.exists.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.integer_illegal \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.integer_overflow \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.language_functions_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.language_functions_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.large_prog \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.large_prog.out \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.large_prog.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.memory_limit \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.nested_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.nested_neg.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.nested_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.nested_pos.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.nvlist_to_lua \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.recursive.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.recursive_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.recursive_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_large.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_nvlist_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_nvlist_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_recursive_table \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.return_recursive_table.zcp \
    mode=0444
file path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.timeout \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/lua_core/tst.timeout.zcp \
    mode=0444
file path=opt/zfs-tests/tests/functional/channel_program/synctask_core/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/channel_program/synctask_core/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.destroy_fs \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.destroy_snap \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_count_and_limit \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_index_props \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_index_props.out \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_index_props.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_mountpoint \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_number_props \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_number_props.out \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_number_props.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_string_props \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_string_props.out \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_string_props.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_type \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_userquota \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.get_written \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.inherit \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.list_children \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.list_clones \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.list_snapshots \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.list_system_props \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.parse_args_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.promote_conflict \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.promote_conflict.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.promote_multiple \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.promote_simple \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_mult \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.rollback_one \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.set_props \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.set_props.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_destroy.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_neg.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_recursive.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.snapshot_simple.zcp \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/channel_program/synctask_core/tst.terminate_by_signal \
    mode=0555
$(i386_ONLY)file path=opt/zfs-tests/tests/functional/checksum/edonr_test.amd64 \
    mode=0555
$(i386_ONLY)file path=opt/zfs-tests/tests/functional/checksum/edonr_test.i386 \
    mode=0555
$(sparc_ONLY)file \
    path=opt/zfs-tests/tests/functional/checksum/edonr_test.sparc mode=0555
$(sparc_ONLY)file \
    path=opt/zfs-tests/tests/functional/checksum/edonr_test.sparcv9 mode=0555
file path=opt/zfs-tests/tests/functional/checksum/run_edonr_test mode=0555
file path=opt/zfs-tests/tests/functional/checksum/run_sha2_test mode=0555
file path=opt/zfs-tests/tests/functional/checksum/run_skein_test mode=0555
$(i386_ONLY)file path=opt/zfs-tests/tests/functional/checksum/sha2_test.amd64 \
    mode=0555
$(i386_ONLY)file path=opt/zfs-tests/tests/functional/checksum/sha2_test.i386 \
    mode=0555
$(sparc_ONLY)file path=opt/zfs-tests/tests/functional/checksum/sha2_test.sparc \
    mode=0555
$(sparc_ONLY)file \
    path=opt/zfs-tests/tests/functional/checksum/sha2_test.sparcv9 mode=0555
$(i386_ONLY)file path=opt/zfs-tests/tests/functional/checksum/skein_test.amd64 \
    mode=0555
$(i386_ONLY)file path=opt/zfs-tests/tests/functional/checksum/skein_test.i386 \
    mode=0555
$(sparc_ONLY)file \
    path=opt/zfs-tests/tests/functional/checksum/skein_test.sparc mode=0555
$(sparc_ONLY)file \
    path=opt/zfs-tests/tests/functional/checksum/skein_test.sparcv9 mode=0555
file path=opt/zfs-tests/tests/functional/clean_mirror/clean_mirror_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/clean_mirror/clean_mirror_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/clean_mirror/clean_mirror_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/clean_mirror/clean_mirror_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/clean_mirror/clean_mirror_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/clean_mirror/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/clean_mirror/default.cfg mode=0444
file path=opt/zfs-tests/tests/functional/clean_mirror/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/cli_common.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zdb/zdb_001_neg mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zdb/zdb_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zdb/zdb_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zdb/zdb_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zdb/zdb_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs/zfs_001_neg mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs/zfs_003_neg mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/zfs_change-key \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/zfs_change-key_child \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/zfs_change-key_format \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/zfs_change-key_inherit \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/zfs_change-key_load \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/zfs_change-key_location \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_change-key/zfs_change-key_pbkdf2iters \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_008_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_009_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_010_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_encrypted \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_004_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_005_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_create/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_create/properties.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_create/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_006_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_007_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_008_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_009_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_010_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_011_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_012_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_013_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_common.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_crypt_combos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_dryrun \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_encrypted \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_005_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_006_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_007_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_008_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_009_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_010_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_011_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_012_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_013_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_014_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_015_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_016_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_diff/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_diff/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_diff/socket mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_diff/zfs_diff_changes \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_diff/zfs_diff_cliargs \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_diff/zfs_diff_encrypted \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_diff/zfs_diff_timestamp \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_diff/zfs_diff_types \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_005_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_006_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_007_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_008_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_009_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_010_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_common.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_list_d.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_inherit/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_inherit/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_inherit/zfs_inherit_001_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_inherit/zfs_inherit_002_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_inherit/zfs_inherit_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/zfs_load-key \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/zfs_load-key.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/zfs_load-key_all \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/zfs_load-key_file \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/zfs_load-key_location \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/zfs_load-key_noop \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_load-key/zfs_load-key_recursive \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_008_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_009_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_010_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_011_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_012_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_all_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_all_fail \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_all_mountpoints \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_encrypted \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_watched_inotify \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_watched_portfs \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_program/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_program/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_program/zfs_program_json \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_006_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_007_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_008_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_encryptionroot \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_property/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_property/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_property/zfs_written_property_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/cleanup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/receive-o-x_props_override \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_004_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_005_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_006_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_007_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_008_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_009_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_011_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_012_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_013_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_014_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_015_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_from_encrypted \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_raw \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_raw_incremental \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_to_encrypted \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_remap/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_remap/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_remap/zfs_remap_cliargs \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_remap/zfs_remap_obsolete_counts \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_004_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_005_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_006_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_007_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_008_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_009_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_010_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_011_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_012_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_013_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_014_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_encrypted_child \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_to_encrypted \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_reservation/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_reservation/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_reservation/zfs_reservation_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_reservation/zfs_reservation_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback_003_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback_004_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send-b \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_004_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_encrypted \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_encrypted_unloaded \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_raw \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/cache_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/cache_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/canmount_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/canmount_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/canmount_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/canmount_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/checksum_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/compression_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/mountpoint_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/mountpoint_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/mountpoint_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/onoffs_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_set/property_alias_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/readonly_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/reservation_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/ro_props_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/share_mount_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/snapdir_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_set/user_property_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_set/user_property_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_set/user_property_003_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_set/user_property_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/version_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/zfs_set_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/zfs_set_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/zfs_set_003_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_set/zfs_set_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_set/zfs_set_keylocation \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_007_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_008_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_009_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_010_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_011_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_001_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_002_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_003_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_004_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_005_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_006_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_007_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_008_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_snapshot/zfs_snapshot_009_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_unload-key/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_unload-key/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unload-key/zfs_unload-key \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unload-key/zfs_unload-key_all \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unload-key/zfs_unload-key_recursive \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_006_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_007_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_008_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_009_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_all_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_unshare/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_unshare/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unshare/zfs_unshare_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unshare/zfs_unshare_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unshare/zfs_unshare_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unshare/zfs_unshare_004_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_unshare/zfs_unshare_005_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/zfs_upgrade.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/zfs_upgrade_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/zfs_upgrade_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/zfs_upgrade_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/zfs_upgrade_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/zfs_upgrade_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/zfs_upgrade_006_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zfs_upgrade/zfs_upgrade_007_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool/zpool_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool/zpool_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool/zpool_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/add-o_ashift \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_add/add_nested_replacing_spare \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/add_prop_ashift \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_007_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_008_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_009_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_010_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_attach/attach-o_ashift \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_attach/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_attach/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_attach/zpool_attach_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_clear/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_clear/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_clear/zpool_clear.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_clear/zpool_clear_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_clear/zpool_clear_002_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_clear/zpool_clear_003_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_clear/zpool_clear_readonly \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_create/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_create/create-o_ashift \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_create/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create.shlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_006_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_007_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_008_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_009_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_010_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_011_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_012_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_014_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_015_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_016_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_017_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_018_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_019_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_020_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_021_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_022_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_023_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_024_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_crypt_combos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_encrypted \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_features_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_features_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_features_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_features_004_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_features_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_tempname \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_destroy/zpool_destroy.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_destroy/zpool_destroy_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_destroy/zpool_destroy_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_destroy/zpool_destroy_003_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_detach/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_detach/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_detach/zpool_detach_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_expand/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_expand/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_expand/zpool_expand.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_expand/zpool_expand_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_expand/zpool_expand_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_expand/zpool_expand_003_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_export/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_export/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_export/zpool_export_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_export/zpool_export_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_export/zpool_export_003_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_export/zpool_export_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_get/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_get/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get_004_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_history/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_history/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_history/zpool_history_001_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_history/zpool_history_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/blockfiles/missing_ivset.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/blockfiles/unclean_export.dat.bz2 \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zpool_import/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_import/cryptv0.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_cachefile_device_added \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_cachefile_device_removed \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_cachefile_device_replaced \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_cachefile_mirror_attached \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_cachefile_mirror_detached \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_cachefile_shared_device \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_devices_missing \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_paths_changed \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_rewind_config_changed \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/import_rewind_device_replaced \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_import/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_006_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_007_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_008_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_009_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_010_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_011_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_012_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_013_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_014_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_all_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_encrypted \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_encrypted_load \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_errata3 \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_errata4 \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_features_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_features_002_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_features_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_missing_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_missing_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_missing_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_rename_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/cleanup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_attach_detach_add_remove \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_import_export \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_offline_export_import_online \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_online_offline \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_split \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_start_and_cancel_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_start_and_cancel_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_suspend_resume \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_unsupported_vdevs \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_verify_checksums \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_verify_initialized \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_labelclear/labelclear.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_active \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_removed \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_valid \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_offline/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_offline/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_offline/zpool_offline_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_offline/zpool_offline_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_online/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_online/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_online/zpool_online_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_online/zpool_online_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_remove/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_remove/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_remove/zpool_remove.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_remove/zpool_remove_001_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_remove/zpool_remove_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_remove/zpool_remove_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen.shlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen_006_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_reopen/zpool_reopen_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_replace/cleanup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_replace/replace-o_ashift \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_replace/replace_prop_ashift \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_replace/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_replace/zpool_replace_001_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_replace/zpool_replace_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_resilver/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_resilver/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver_bad_args \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver_restart \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_001_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_005_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_encrypted_unloaded \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_multiple_copies \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_offline_device \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_print_repairing \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_set/zpool_set_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_set/zpool_set_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_set/zpool_set_003_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_set/zpool_set_ashift \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_status/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_status/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_status/zpool_status_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_status/zpool_status_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_sync/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_sync/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_sync/zpool_sync_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_sync/zpool_sync_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_attach_detach_add_remove \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_import_export \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_multiple \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_offline_export_import_online \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_online_offline \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_partial \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_rate \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_rate_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_secure \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_split \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_start_and_cancel_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_start_and_cancel_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_suspend_resume \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_unsupported_vdevs \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_verify_checksums \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_trim/zpool_trim_verify_trimmed \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-broken-mirror1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-broken-mirror2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v10.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v11.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v12.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v13.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v14.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v15.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1mirror1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1mirror2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1mirror3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1raidz1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1raidz2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1raidz3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1stripe1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1stripe2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v1stripe3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2mirror1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2mirror2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2mirror3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2raidz1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2raidz2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2raidz3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2stripe1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2stripe2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v2stripe3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3hotspare1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3hotspare2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3hotspare3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3mirror1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3mirror2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3mirror3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3raidz1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3raidz2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3raidz21.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3raidz22.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3raidz23.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3raidz3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3stripe1.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3stripe2.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v3stripe3.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v4.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v5.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v6.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v7.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v8.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v9.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-v999.dat.bz2 \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/blockfiles/zfs-pool-vBROKEN.dat.bz2 \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/setup \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade.cfg \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade.kshlib \
    mode=0444
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_003_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_005_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_006_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_007_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_008_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_009_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/misc.cfg mode=0444
file path=opt/zfs-tests/tests/functional/cli_user/misc/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zdb_001_neg mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_001_neg mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_allow_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_channel_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_clone_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_create_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_destroy_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_get_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_inherit_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_mount_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_promote_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_receive_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_rename_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_rollback_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_send_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_set_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_share_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_snapshot_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_unallow_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_unmount_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_unshare_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zfs_upgrade_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_001_neg mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_add_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_attach_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_clear_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_create_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_destroy_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_detach_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_export_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_get_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_history_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_import_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_import_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_offline_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_online_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_remove_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_replace_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_scrub_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_set_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_status_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/misc/zpool_upgrade_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/setup mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list_004_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list_008_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zpool_iostat/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zpool_iostat/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_user/zpool_iostat/zpool_iostat_001_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_user/zpool_iostat/zpool_iostat_002_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_user/zpool_iostat/zpool_iostat_003_neg \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_user/zpool_iostat/zpool_iostat_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zpool_list/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/cli_user/zpool_list/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_user/zpool_list/zpool_list_001_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/cli_user/zpool_list/zpool_list_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/compression/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/compression/compress.cfg mode=0444
file path=opt/zfs-tests/tests/functional/compression/compress_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/compression/compress_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/compression/compress_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/compression/compress_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/compression/setup mode=0555
file path=opt/zfs-tests/tests/functional/ctime/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/ctime/ctime_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/ctime/setup mode=0555
file path=opt/zfs-tests/tests/functional/delegate/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/delegate/delegate.cfg mode=0444
file path=opt/zfs-tests/tests/functional/delegate/delegate_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/delegate/setup mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_009_neg mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_010_pos mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_011_neg mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_allow_012_neg mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_unallow_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_unallow_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_unallow_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_unallow_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_unallow_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_unallow_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_unallow_007_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/delegate/zfs_unallow_008_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/devices/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/devices/devices.cfg mode=0444
file path=opt/zfs-tests/tests/functional/devices/devices_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/devices/devices_002_neg mode=0555
file path=opt/zfs-tests/tests/functional/devices/devices_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/devices/devices_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/devices/setup mode=0555
file path=opt/zfs-tests/tests/functional/exec/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/exec/exec_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/exec/exec_002_neg mode=0555
file path=opt/zfs-tests/tests/functional/exec/mmap_exec mode=0555
file path=opt/zfs-tests/tests/functional/exec/setup mode=0555
file path=opt/zfs-tests/tests/functional/fault/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/fault/fault.cfg mode=0444
file path=opt/zfs-tests/tests/functional/fault/setup mode=0555
file path=opt/zfs-tests/tests/functional/fault/zpool_status_-s mode=0555
file \
    path=opt/zfs-tests/tests/functional/features/async_destroy/async_destroy_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/features/async_destroy/cleanup \
    mode=0555
file path=opt/zfs-tests/tests/functional/features/async_destroy/setup \
    mode=0555
file path=opt/zfs-tests/tests/functional/grow_pool/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/grow_pool/grow_pool.cfg mode=0444
file path=opt/zfs-tests/tests/functional/grow_pool/grow_pool_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/grow_pool/setup mode=0555
file path=opt/zfs-tests/tests/functional/grow_replicas/grow_replicas.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/grow_replicas/grow_replicas_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/history/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/history/history.cfg mode=0444
file path=opt/zfs-tests/tests/functional/history/history_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/history/history_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/history/history_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/history/history_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/history/history_005_neg mode=0555
file path=opt/zfs-tests/tests/functional/history/history_006_neg mode=0555
file path=opt/zfs-tests/tests/functional/history/history_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/history/history_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/history/history_009_pos mode=0555
file path=opt/zfs-tests/tests/functional/history/history_010_pos mode=0555
file path=opt/zfs-tests/tests/functional/history/history_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/history/i386.migratedpool.DAT.Z \
    mode=0444
file path=opt/zfs-tests/tests/functional/history/i386.orig_history.txt \
    mode=0444
file path=opt/zfs-tests/tests/functional/history/setup mode=0555
file path=opt/zfs-tests/tests/functional/history/sparc.migratedpool.DAT.Z \
    mode=0444
file path=opt/zfs-tests/tests/functional/history/sparc.orig_history.txt \
    mode=0444
file path=opt/zfs-tests/tests/functional/history/zfs-pool-v4.dat.Z mode=0444
file path=opt/zfs-tests/tests/functional/holes/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/holes/holes.shlib mode=0444
file path=opt/zfs-tests/tests/functional/holes/holes_sanity mode=0555
file path=opt/zfs-tests/tests/functional/holes/setup mode=0555
file path=opt/zfs-tests/tests/functional/inheritance/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/inheritance/config001.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config002.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config003.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config004.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config005.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config006.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config007.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config008.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config009.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config010.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config011.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config012.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config013.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config014.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config015.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config016.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config017.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config018.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config019.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config020.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config021.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config022.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config023.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/config024.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/inherit.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/inherit_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/inheritance/state001.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state002.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state003.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state004.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state005.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state006.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state007.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state008.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state009.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state010.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state011.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state012.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state013.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state014.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state015.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state016.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state017.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state018.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state019.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state020.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state021.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state022.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state023.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inheritance/state024.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inuse/inuse.cfg mode=0444
file path=opt/zfs-tests/tests/functional/inuse/inuse_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/inuse/inuse_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/inuse/inuse_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/inuse/inuse_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/inuse/inuse_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/inuse/inuse_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/inuse/inuse_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/inuse/inuse_009_pos mode=0555
file path=opt/zfs-tests/tests/functional/inuse/setup mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_004_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_007_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_008_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/large_dnode_009_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_dnode/setup mode=0555
file path=opt/zfs-tests/tests/functional/large_files/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/large_files/large_files_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/large_files/setup mode=0555
file path=opt/zfs-tests/tests/functional/largest_pool/largest_pool.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/largest_pool/largest_pool_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/libzfs/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/libzfs/libzfs_input mode=0555
file path=opt/zfs-tests/tests/functional/libzfs/many_fds mode=0555
file path=opt/zfs-tests/tests/functional/libzfs/setup mode=0555
file path=opt/zfs-tests/tests/functional/link_count/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/link_count/link_count_001 mode=0555
file path=opt/zfs-tests/tests/functional/link_count/setup mode=0555
file path=opt/zfs-tests/tests/functional/log_spacemap/log_spacemap_import_logs \
    mode=0555
file path=opt/zfs-tests/tests/functional/mdb/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/mdb/mdb_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/mdb/setup mode=0555
file path=opt/zfs-tests/tests/functional/migration/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration.cfg mode=0444
file path=opt/zfs-tests/tests/functional/migration/migration.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/migration/migration_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_009_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_010_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_011_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/migration_012_pos mode=0555
file path=opt/zfs-tests/tests/functional/migration/setup mode=0555
file path=opt/zfs-tests/tests/functional/mmap/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/mmap/mmap_read_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/mmap/mmap_write_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/mmap/setup mode=0555
file path=opt/zfs-tests/tests/functional/mmp/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp.cfg mode=0444
file path=opt/zfs-tests/tests/functional/mmp/mmp.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/mmp/mmp_active_import mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_exported_import mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_inactive_import mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_interval mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_on_off mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_on_thread mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_on_uberblocks mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_on_zdb mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_reset_interval mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_write_distribution mode=0555
file path=opt/zfs-tests/tests/functional/mmp/mmp_write_uberblocks mode=0555
file path=opt/zfs-tests/tests/functional/mmp/multihost_history mode=0555
file path=opt/zfs-tests/tests/functional/mmp/setup mode=0555
file path=opt/zfs-tests/tests/functional/mount/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/mount/setup mode=0555
file path=opt/zfs-tests/tests/functional/mount/umount_001 mode=0555
file path=opt/zfs-tests/tests/functional/mount/umount_002 mode=0555
file path=opt/zfs-tests/tests/functional/mount/umount_unlinked_drain mode=0555
file path=opt/zfs-tests/tests/functional/mount/umountall_001 mode=0555
file path=opt/zfs-tests/tests/functional/mv_files/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/mv_files/mv_files.cfg mode=0444
file path=opt/zfs-tests/tests/functional/mv_files/mv_files_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/mv_files/mv_files_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/mv_files/mv_files_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/mv_files/setup mode=0555
file path=opt/zfs-tests/tests/functional/nestedfs/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/nestedfs/nestedfs_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/nestedfs/setup mode=0555
file path=opt/zfs-tests/tests/functional/no_space/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/no_space/enospc.cfg mode=0444
file path=opt/zfs-tests/tests/functional/no_space/enospc_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/no_space/enospc_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/no_space/setup mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite.shlib mode=0444
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite_copies mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite_mtime mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite_negative mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite_promoted_clone \
    mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite_recsize mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite_sync mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite_varying_compression \
    mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/nopwrite_volume mode=0555
file path=opt/zfs-tests/tests/functional/nopwrite/setup mode=0555
file path=opt/zfs-tests/tests/functional/online_offline/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/online_offline/online_offline_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/online_offline/online_offline_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/online_offline/online_offline_003_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/online_offline/setup mode=0555
file \
    path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_after_rewind \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_big_rewind \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_capacity \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_conf_change \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_discard \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_discard_busy \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_discard_many \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_indirect \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_invalid \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_lun_expsz \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_open \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_removal \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_rewind \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_ro_rewind \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_sm_scale \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_twice \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_vdev_add \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_zdb \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/checkpoint_zhack_feat \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_checkpoint/cleanup mode=0555
file \
    path=opt/zfs-tests/tests/functional/pool_checkpoint/pool_checkpoint.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/pool_checkpoint/setup mode=0555
file path=opt/zfs-tests/tests/functional/pool_names/pool_names_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/pool_names/pool_names_002_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/poolversion/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/poolversion/poolversion.cfg mode=0444
file path=opt/zfs-tests/tests/functional/poolversion/poolversion_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/poolversion/poolversion_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/poolversion/setup mode=0555
file path=opt/zfs-tests/tests/functional/privilege/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/privilege/privilege_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/privilege/privilege_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/privilege/setup mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectid_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectid_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectid_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_004_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_008_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectquota_009_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/projectquota/projectquota_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/projectquota/projectspace_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectspace_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectspace_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projectspace_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projecttree_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projecttree_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/projecttree_003_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/projectquota/setup mode=0555
file path=opt/zfs-tests/tests/functional/quota/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/quota/quota.cfg mode=0444
file path=opt/zfs-tests/tests/functional/quota/quota.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/quota/quota_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/quota/quota_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/quota/quota_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/quota/quota_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/quota/quota_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/quota/quota_006_neg mode=0555
file path=opt/zfs-tests/tests/functional/quota/setup mode=0555
file path=opt/zfs-tests/tests/functional/raidz/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/raidz/raidz_001_neg mode=0555
file path=opt/zfs-tests/tests/functional/raidz/raidz_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/raidz/setup mode=0555
file path=opt/zfs-tests/tests/functional/redundancy/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/redundancy/redundancy.cfg mode=0444
file path=opt/zfs-tests/tests/functional/redundancy/redundancy.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/redundancy/redundancy_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/redundancy/redundancy_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/redundancy/redundancy_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/redundancy/redundancy_004_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/redundancy/setup mode=0555
file path=opt/zfs-tests/tests/functional/refquota/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/refquota/refquota_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/refquota/refquota_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/refquota/refquota_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/refquota/refquota_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/refquota/refquota_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/refquota/refquota_006_neg mode=0555
file path=opt/zfs-tests/tests/functional/refquota/setup mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/refreserv.cfg mode=0444
file path=opt/zfs-tests/tests/functional/refreserv/refreserv_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/refreserv_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/refreserv_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/refreserv_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/refreserv_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/refreserv_multi_raidz \
    mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/refreserv_raidz mode=0555
file path=opt/zfs-tests/tests/functional/refreserv/setup mode=0555
file path=opt/zfs-tests/tests/functional/removal/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/removal/removal_all_vdev mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_check_space mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_condense_export \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_multiple_indirection \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_remap mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_remap_deadlists \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_reservation mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_resume_export \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_sanity mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_add mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_create_fs \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_dedup mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_export mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_ganging \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_remap mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_remove mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_scrub mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_send mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_send_recv \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_snapshot \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_write mode=0555
file path=opt/zfs-tests/tests/functional/removal/removal_with_zdb mode=0555
file path=opt/zfs-tests/tests/functional/removal/remove_expanded mode=0555
file path=opt/zfs-tests/tests/functional/removal/remove_mirror mode=0555
file path=opt/zfs-tests/tests/functional/removal/remove_mirror_sanity \
    mode=0555
file path=opt/zfs-tests/tests/functional/removal/remove_raidz mode=0555
file path=opt/zfs-tests/tests/functional/rename_dirs/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/rename_dirs/rename_dirs_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/rename_dirs/setup mode=0555
file path=opt/zfs-tests/tests/functional/replacement/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/replacement/replacement.cfg mode=0444
file path=opt/zfs-tests/tests/functional/replacement/replacement_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/replacement/replacement_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/replacement/replacement_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/replacement/setup mode=0555
file path=opt/zfs-tests/tests/functional/reservation/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation.cfg mode=0444
file path=opt/zfs-tests/tests/functional/reservation/reservation.shlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/reservation/reservation_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_008_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_009_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_010_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_011_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_012_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_013_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_014_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_015_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_016_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_017_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_018_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_019_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_020_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_021_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/reservation_022_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/reservation/setup mode=0555
file path=opt/zfs-tests/tests/functional/resilver/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/resilver/resilver.cfg mode=0444
file path=opt/zfs-tests/tests/functional/resilver/resilver_restart_001 \
    mode=0555
file path=opt/zfs-tests/tests/functional/resilver/resilver_restart_002 \
    mode=0555
file path=opt/zfs-tests/tests/functional/resilver/setup mode=0555
file path=opt/zfs-tests/tests/functional/resilver/sysevent mode=0555
file path=opt/zfs-tests/tests/functional/rootpool/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/rootpool/rootpool_002_neg mode=0555
file path=opt/zfs-tests/tests/functional/rootpool/rootpool_003_neg mode=0555
file path=opt/zfs-tests/tests/functional/rootpool/rootpool_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/rootpool/setup mode=0555
file path=opt/zfs-tests/tests/functional/rsend/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/rsend/recv_secpolicy mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend.cfg mode=0444
file path=opt/zfs-tests/tests/functional/rsend/rsend.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/rsend/rsend_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_009_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_010_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_011_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_012_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_013_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_014_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_019_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_020_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_021_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_022_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/rsend_024_pos mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-cD mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_embedded_blocks \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_incremental mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_lz4_disabled mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_mixed_compression \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_props mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_recv_dedup mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_recv_lz4_disabled \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_resume mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_stream_size_estimate \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_verify_contents \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_verify_ratio mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_volume mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-c_zstreamdump mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-cpL_varied_recsize \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send-wDR_encrypted_zvol \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_encrypted_files mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_encrypted_hierarchy \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_encrypted_props mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_encrypted_truncated_files \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_freeobjects mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_holds mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_mixed_raw mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_realloc_dnode_size \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_realloc_encrypted_files \
    mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_realloc_files mode=0555
file path=opt/zfs-tests/tests/functional/rsend/send_spill_block mode=0555
file path=opt/zfs-tests/tests/functional/rsend/setup mode=0555
file path=opt/zfs-tests/tests/functional/scrub_mirror/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/scrub_mirror/default.cfg mode=0444
file path=opt/zfs-tests/tests/functional/scrub_mirror/scrub_mirror_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/scrub_mirror/scrub_mirror_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/scrub_mirror/scrub_mirror_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/scrub_mirror/scrub_mirror_004_pos \
    mode=0555
file \
    path=opt/zfs-tests/tests/functional/scrub_mirror/scrub_mirror_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/scrub_mirror/setup mode=0555
file path=opt/zfs-tests/tests/functional/slog/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/slog/setup mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog.cfg mode=0444
file path=opt/zfs-tests/tests/functional/slog/slog.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/slog/slog_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_008_neg mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_009_neg mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_010_neg mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_011_neg mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_012_neg mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_013_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_014_pos mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_015_neg mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_replay_fs_001 mode=0555
file path=opt/zfs-tests/tests/functional/slog/slog_replay_fs_002 mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/clone_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/deadlist_lock mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/rollback_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/rollback_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/rollback_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/setup mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot.cfg mode=0444
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_009_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_010_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_011_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_012_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_013_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_014_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_015_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_016_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapshot/snapshot_017_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapused/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/snapused/setup mode=0555
file path=opt/zfs-tests/tests/functional/snapused/snapused.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/snapused/snapused_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapused/snapused_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapused/snapused_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapused/snapused_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/snapused/snapused_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/sparse/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/sparse/setup mode=0555
file path=opt/zfs-tests/tests/functional/sparse/sparse.cfg mode=0444
file path=opt/zfs-tests/tests/functional/sparse/sparse_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/threadsappend/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/threadsappend/setup mode=0555
file path=opt/zfs-tests/tests/functional/threadsappend/threadsappend mode=0555
file path=opt/zfs-tests/tests/functional/threadsappend/threadsappend_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/trim/autotrim_config mode=0555
file path=opt/zfs-tests/tests/functional/trim/autotrim_integrity mode=0555
file path=opt/zfs-tests/tests/functional/trim/autotrim_trim_integrity \
    mode=0555
file path=opt/zfs-tests/tests/functional/trim/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/trim/setup mode=0555
file path=opt/zfs-tests/tests/functional/trim/trim.cfg mode=0444
file path=opt/zfs-tests/tests/functional/trim/trim.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/trim/trim_config mode=0555
file path=opt/zfs-tests/tests/functional/trim/trim_integrity mode=0555
file path=opt/zfs-tests/tests/functional/truncate/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/truncate/setup mode=0555
file path=opt/zfs-tests/tests/functional/truncate/truncate.cfg mode=0444
file path=opt/zfs-tests/tests/functional/truncate/truncate_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/truncate/truncate_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/upgrade/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/upgrade/setup mode=0555
file path=opt/zfs-tests/tests/functional/upgrade/upgrade_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/upgrade/upgrade_projectquota_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/upgrade/upgrade_readonly_pool \
    mode=0555
file path=opt/zfs-tests/tests/functional/upgrade/upgrade_userobj_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/userquota/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/userquota/groupspace_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/userquota/groupspace_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/userquota/groupspace_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/userquota/setup mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota.cfg mode=0444
file path=opt/zfs-tests/tests/functional/userquota/userquota_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_005_neg mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_009_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_010_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_011_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_012_neg mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_013_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userquota_common.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/userquota/userspace_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userspace_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/userquota/userspace_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/setup mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test.cfg mode=0444
file path=opt/zfs-tests/tests/functional/utils_test/utils_test.kshlib \
    mode=0444
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_007_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_008_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/utils_test/utils_test_009_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/setup mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/vdev_zaps.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/vdev_zaps/vdev_zaps_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/vdev_zaps_002_pos mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/vdev_zaps_003_pos mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/vdev_zaps_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/vdev_zaps_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/vdev_zaps_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/vdev_zaps/vdev_zaps_007_pos mode=0555
file path=opt/zfs-tests/tests/functional/write_dirs/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/write_dirs/setup mode=0555
file path=opt/zfs-tests/tests/functional/write_dirs/write_dirs_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/write_dirs/write_dirs_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/xattr/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/xattr/setup mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_001_pos mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_002_neg mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_003_neg mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_004_pos mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_005_pos mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_006_pos mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_007_neg mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_008_pos mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_009_neg mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_010_neg mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_011_pos mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_012_pos mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_013_pos mode=0555
file path=opt/zfs-tests/tests/functional/xattr/xattr_common.kshlib mode=0444
file path=opt/zfs-tests/tests/functional/zvol/zvol.cfg mode=0444
file path=opt/zfs-tests/tests/functional/zvol/zvol_ENOSPC/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_ENOSPC/setup mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_ENOSPC/zvol_ENOSPC_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_cli/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_cli/setup mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_cli/zvol_cli_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_cli/zvol_cli_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_cli/zvol_cli_003_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_common.shlib mode=0444
file path=opt/zfs-tests/tests/functional/zvol/zvol_dump/zvol_dump_raidz \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_misc/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_misc/setup mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_001_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_003_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_005_neg \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/cleanup mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/setup mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/zvol_swap.cfg \
    mode=0444
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/zvol_swap_001_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/zvol_swap_002_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/zvol_swap_003_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/zvol_swap_004_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/zvol_swap_005_pos \
    mode=0555
file path=opt/zfs-tests/tests/functional/zvol/zvol_swap/zvol_swap_006_pos \
    mode=0555
file path=opt/zfs-tests/tests/longevity/slop_space_test mode=0555
file path=opt/zfs-tests/tests/perf/fio/mkfiles.fio mode=0444
file path=opt/zfs-tests/tests/perf/fio/random_reads.fio mode=0444
file path=opt/zfs-tests/tests/perf/fio/random_readwrite.fio mode=0444
file path=opt/zfs-tests/tests/perf/fio/random_readwrite_fixed.fio mode=0444
file path=opt/zfs-tests/tests/perf/fio/random_writes.fio mode=0444
file path=opt/zfs-tests/tests/perf/fio/sequential_reads.fio mode=0444
file path=opt/zfs-tests/tests/perf/fio/sequential_writes.fio mode=0444
file path=opt/zfs-tests/tests/perf/perf.shlib mode=0444
file path=opt/zfs-tests/tests/perf/regression/random_reads mode=0555
file path=opt/zfs-tests/tests/perf/regression/random_readwrite mode=0555
file path=opt/zfs-tests/tests/perf/regression/random_readwrite_fixed mode=0555
file path=opt/zfs-tests/tests/perf/regression/random_writes mode=0555
file path=opt/zfs-tests/tests/perf/regression/random_writes_zil mode=0555
file path=opt/zfs-tests/tests/perf/regression/sequential_reads mode=0555
file path=opt/zfs-tests/tests/perf/regression/sequential_reads_arc_cached \
    mode=0555
file \
    path=opt/zfs-tests/tests/perf/regression/sequential_reads_arc_cached_clone \
    mode=0555
file path=opt/zfs-tests/tests/perf/regression/sequential_reads_dbuf_cached \
    mode=0555
file path=opt/zfs-tests/tests/perf/regression/sequential_writes mode=0555
file path=opt/zfs-tests/tests/perf/regression/setup mode=0555
file path=opt/zfs-tests/tests/perf/scripts/io.d mode=0444
file path=opt/zfs-tests/tests/perf/scripts/offcpu-profile.d mode=0444
file path=opt/zfs-tests/tests/perf/scripts/prefetch_io.d mode=0444
file path=opt/zfs-tests/tests/perf/scripts/profile.d mode=0444
file path=opt/zfs-tests/tests/perf/scripts/zil.d mode=0444
file path=opt/zfs-tests/tests/stress/races/remove_file_while_remap mode=0555
license cr_Sun license=cr_Sun
license lic_CDDL license=lic_CDDL
depend fmri=system/file-system/zfs/tests type=require
depend fmri=system/test/fio type=require
depend fmri=system/test/testrunner type=require
depend fmri=system/xopen/xcu4 type=require