This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ltp-production.yaml
1900 lines (1888 loc) · 64 KB
/
ltp-production.yaml
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
globals:
- environments: &environments_arm64
- bcm2711-rpi-4-b
- bcm2711-rpi-4-b-64k_page_size
- bcm2711-rpi-4-b-clang
- dragonboard-410c
- e850-96
- fvp-aemva
- fx700
- hi6220-hikey
- juno-64k_page_size
- juno-r2
- juno-r2-compat
- juno-r2-kasan
- nxp-ls2088
- nxp-ls2088-64k_page_size
- nxp-ls2088-kasan
- qemu-arm64
- qemu-arm64-armv8-features
- qemu-arm64-clang
- qemu-arm64-debug
- qemu-arm64-debug-kmemleak
- qemu-arm64-gic-version2
- qemu-arm64-gic-version3
- qemu-arm64-kasan
- qemu-arm64-mte
- qemu_arm64
- qemu_arm64-compat
- rk3399-rock-pi-4b
- environments: &environments_arm32
- qemu-arm-clang
- qemu-arm-debug
- qemu-arm-debug-kmemleak
- qemu-armv7
- qemu_arm
- x15
- environments: &environments_x86_64
- qemu-x86_64
- qemu-x86_64-clang
- qemu-x86_64-debug
- qemu-x86_64-kasan
- qemu-x86_64-kcsan
- qemu_x86_64
- qemu_x86_64-compat
- x86
- x86-kasan
- environments: &environments_i386
- i386
- qemu-i386
- qemu-i386-clang
- qemu-i386-debug
- qemu_i386
- environments: &environments_qemu
- fvp-aemva
- qemu-arm-clang
- qemu-arm-debug
- qemu-arm-debug-kmemleak
- qemu-arm64
- qemu-arm64-clang
- qemu-arm64-debug
- qemu-arm64-debug-kmemleak
- qemu-arm64-gic-version2
- qemu-arm64-gic-version3
- qemu-arm64-kasan
- qemu-arm64-mte
- qemu-armv7
- qemu-i386
- qemu-i386-clang
- qemu-i386-debug
- qemu-x86_64
- qemu-x86_64-clang
- qemu-x86_64-debug
- qemu-x86_64-kasan
- qemu-x86_64-kcsan
- qemu_arm
- qemu_arm64
- qemu_arm64-compat
- qemu_i386
- qemu_x86_64
- qemu_x86_64-compat
- environments: &environments_32bit
- i386
- juno-r2-compat
- qemu-arm-clang
- qemu-arm-debug
- qemu-arm-debug-kmemleak
- qemu-armv7
- qemu-i386
- qemu-i386-clang
- qemu-i386-debug
- qemu_arm
- qemu_arm64-compat
- qemu_i386
- qemu_x86_64-compat
- x15
- environments: &environments_qemu_arm
- qemu-arm-clang
- qemu-arm-debug
- qemu-arm-debug-kmemleak
- qemu-arm64
- qemu-arm64-armv8-features
- qemu-arm64-clang
- qemu-arm64-debug
- qemu-arm64-debug-kmemleak
- qemu-arm64-gic-version2
- qemu-arm64-gic-version3
- qemu-arm64-kasan
- qemu-arm64-mte
- qemu-armv7
- qemu_arm
- qemu_arm64
- qemu_arm64-compat
- environments: &environments_intel
- i386
- qemu-i386
- qemu-i386-clang
- qemu-i386-debug
- qemu-x86_64
- qemu-x86_64-clang
- qemu-x86_64-debug
- qemu-x86_64-kasan
- qemu-x86_64-kcsan
- qemu_i386
- qemu_x86_64
- qemu_x86_64-compat
- x86
- x86-kasan
- environments: &environments_arm64_arm32
- bcm2711-rpi-4-b
- bcm2711-rpi-4-b-64k_page_size
- bcm2711-rpi-4-b-clang
- dragonboard-410c
- dragonboard-845c
- e850-96
- fvp-aemva
- fx700
- hi6220-hikey
- juno-64k_page_size
- juno-r2
- juno-r2-compat
- juno-r2-kasan
- nxp-ls2088
- nxp-ls2088-64k_page_size
- nxp-ls2088-kasan
- qemu-arm-clang
- qemu-arm-debug
- qemu-arm-debug-kmemleak
- qemu-arm64
- qemu-arm64-armv8-features
- qemu-arm64-clang
- qemu-arm64-debug
- qemu-arm64-debug-kmemleak
- qemu-arm64-gic-version2
- qemu-arm64-gic-version3
- qemu-arm64-kasan
- qemu-arm64-mte
- qemu-armv7
- qemu_arm
- qemu_arm64
- qemu_arm64-compat
- rk3399-rock-pi-4b
- x15
- environments: &environments_64bit
- bcm2711-rpi-4-b
- bcm2711-rpi-4-b-64k_page_size
- bcm2711-rpi-4-b-clang
- dragonboard-410c
- dragonboard-845c
- e850-96
- fvp-aemva
- fx700
- hi6220-hikey
- juno-64k_page_size
- juno-r2
- juno-r2-compat
- juno-r2-kasan
- nxp-ls2088
- nxp-ls2088-64k_page_size
- nxp-ls2088-kasan
- qemu-arm64
- qemu-arm64-armv8-features
- qemu-arm64-clang
- qemu-arm64-debug
- qemu-arm64-debug-kmemleak
- qemu-arm64-gic-version2
- qemu-arm64-gic-version3
- qemu-arm64-kasan
- qemu-arm64-mte
- qemu-x86_64
- qemu-x86_64-clang
- qemu-x86_64-debug
- qemu-x86_64-kasan
- qemu-x86_64-kcsan
- qemu_arm64
- qemu_arm64-compat
- qemu_x86_64
- qemu_x86_64-compat
- rk3399-rock-pi-4b
- x86
- x86-kasan
projects:
- name: LKFT-ltp
projects: &projects_all
- lkft/linux-next-master
- lkft/linux-mainline-master
- lkft/linux-stable-rc-linux-6.10.y
- lkft/linux-stable-rc-linux-6.9.y
- lkft/linux-stable-rc-linux-6.8.y
- lkft/linux-stable-rc-linux-6.7.y
- lkft/linux-stable-rc-linux-6.6.y
- lkft/linux-stable-rc-linux-6.5.y
- lkft/linux-stable-rc-linux-6.1.y
- lkft/linux-stable-rc-linux-5.15.y
- lkft/linux-stable-rc-linux-5.10.y
- lkft/linux-stable-rc-linux-5.4.y
- lkft/linux-stable-rc-linux-4.19.y
- lkft/linux-stable-rc-linux-4.14.y
- lkft/linux-stable-rc-linux-4.9.y
- lkft/linux-stable-rc-linux-4.4.y
- lkft/linaro-hikey-stable-rc-4.4-oe
url: https://qa-reports.linaro.org
environments: &environments_all
- bcm2711-rpi-4-b
- bcm2711-rpi-4-b-64k_page_size
- bcm2711-rpi-4-b-clang
- dragonboard-410c
- dragonboard-845c
- e850-96
- fvp-aemva
- fx700
- hi6220-hikey
- i386
- juno-64k_page_size
- juno-r2
- juno-r2-compat
- juno-r2-kasan
- nxp-ls2088
- nxp-ls2088-64k_page_size
- nxp-ls2088-kasan
- qemu-arm-clang
- qemu-arm-debug
- qemu-arm-debug-kmemleak
- qemu-arm64
- qemu-arm64-armv8-features
- qemu-arm64-clang
- qemu-arm64-debug
- qemu-arm64-debug-kmemleak
- qemu-arm64-gic-version2
- qemu-arm64-gic-version3
- qemu-arm64-kasan
- qemu-arm64-mte
- qemu-armv7
- qemu-i386
- qemu-i386-clang
- qemu-i386-debug
- qemu-i386-debug-kmemleak
- qemu-x86_64
- qemu-x86_64-clang
- qemu-x86_64-debug
- qemu-x86_64-debug-kmemleak
- qemu-x86_64-kasan
- qemu-x86_64-kcsan
- qemu_arm
- qemu_arm64
- qemu_arm64-compat
- qemu_i386
- qemu_x86_64
- qemu_x86_64-compat
- rk3399-rock-pi-4b
- x15
- x86
- x86-kasan
known_issues:
- environments:
- hi6220-hikey
notes: >
Linux-4.4: LTP: bind02: socket() failed: errno=EACCES(13): Permission
denied
projects:
- lkft/linaro-hikey-stable-rc-4.4-oe
test_name: ltp-syscalls/bind02
url: https://bugs.linaro.org/show_bug.cgi?id=2962
active: true
intermittent: false
- environments: *environments_all
notes: >
New test case bind03 failed
LTP: 4.4: bind03.c:55: FAIL: expected EINVAL: EADDRINUSE
projects:
- lkft/linux-stable-rc-linux-4.4.y
- lkft/linaro-hikey-stable-rc-4.4-oe
test_name: ltp-syscalls/bind03
url: https://bugs.linaro.org/show_bug.cgi?id=4042
active: false
intermittent: false
- environments: *environments_all
notes: >
New test case mlock203 failed
LTP: 4.4: mlock203.c:63: FAIL: Locking one memory again increased VmLck
projects:
- lkft/linux-stable-rc-linux-4.4.y
- lkft/linaro-hikey-stable-rc-4.4-oe
test_name: ltp-syscalls/mlock203
url: https://bugs.linaro.org/show_bug.cgi?id=4043
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP: pselect01: slept for too long
projects: *projects_all
test_name: ltp-syscalls/pselect01
url: https://bugs.linaro.org/show_bug.cgi?id=3089
active: true
intermittent: true
- environments: *environments_all
notes: >
LKFT: LTP: pselect01_64: slept for too long
projects: *projects_all
test_name: ltp-syscalls/pselect01_64
url: https://bugs.linaro.org/show_bug.cgi?id=3089
active: true
intermittent: true
- environments: *environments_arm64_arm32
notes: >
mainline kernel tests baselining
projects: *projects_all
test_names:
- ltp-syscalls/quotactl01
- ltp-syscalls-compat/quotactl01
- ltp-syscalls-64k-page_size/quotactl01
- ltp-syscalls-kasan/quotactl01
url: https://projects.linaro.org/projects/CTT/queues/issue/CTT-585
active: true
intermittent: false
- environments: *environments_arm64
notes: >
sysfs01 sysfs02 sysfs03 sysfs04 sysfs05 and sysfs06 no more valid.
sysfs system call is obsolete; don't use it.
This test can only run on kernels that support the sysfs system call
projects: *projects_all
test_name: ltp-syscalls/sysfs01
url: https://bugs.linaro.org/show_bug.cgi?id=3722
active: true
intermittent: false
- environments: *environments_arm64
notes: >
sysfs01 sysfs02 sysfs03 sysfs04 sysfs05 and sysfs06 no more valid.
sysfs system call is obsolete; don't use it.
This test can only run on kernels that support the sysfs system call
projects: *projects_all
test_name: ltp-syscalls/sysfs02
url: https://bugs.linaro.org/show_bug.cgi?id=3722
active: true
intermittent: false
- environments: *environments_arm64
notes: >
sysfs01 sysfs02 sysfs03 sysfs04 sysfs05 and sysfs06 no more valid.
sysfs system call is obsolete; don't use it.
This test can only run on kernels that support the sysfs system call
projects: *projects_all
test_name: ltp-syscalls/sysfs03
url: https://bugs.linaro.org/show_bug.cgi?id=3722
active: true
intermittent: false
- environments: *environments_arm64
notes: >
sysfs01 sysfs02 sysfs03 sysfs04 sysfs05 and sysfs06 no more valid.
sysfs system call is obsolete; don't use it.
This test can only run on kernels that support the sysfs system call
projects: *projects_all
test_name: ltp-syscalls/sysfs04
url: https://bugs.linaro.org/show_bug.cgi?id=3722
active: true
intermittent: false
- environments: *environments_arm64
notes: >
sysfs01 sysfs02 sysfs03 sysfs04 sysfs05 and sysfs06 no more valid.
sysfs system call is obsolete; don't use it.
This test can only run on kernels that support the sysfs system call
projects: *projects_all
test_name: ltp-syscalls/sysfs05
url: https://bugs.linaro.org/show_bug.cgi?id=3722
active: true
intermittent: false
- environments: *environments_arm64
notes: >
sysfs01 sysfs02 sysfs03 sysfs04 sysfs05 and sysfs06 no more valid.
sysfs system call is obsolete; don't use it.
This test can only run on kernels that support the sysfs system call
projects: *projects_all
test_name: ltp-syscalls/sysfs06
url: https://bugs.linaro.org/show_bug.cgi?id=3722
active: true
intermittent: false
- environments: *environments_arm64
notes: >
ustat01 and ustat02 failed only on Juno, because this syscall not
implemented on arm-64 architecture.
ustat(2) failed and setthe errno to 38 : Function not implemented
projects: *projects_all
test_name: ltp-syscalls/ustat01
url: https://bugs.linaro.org/show_bug.cgi?id=3721
active: true
intermittent: false
- environments: *environments_arm64_arm32
notes: >
ustat01 and ustat02 failed only on Juno, because this syscall not
implemented on arm-64 architecture.
ustat(2) failed and setthe errno to 38 : Function not implemented
projects: *projects_all
test_name: ltp-syscalls/ustat02
url: https://bugs.linaro.org/show_bug.cgi?id=3721
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP: inotify07 FAIL: didn't get event: mask=40000004
inotify07 is not supported on 4.4 and 4.9
projects:
- lkft/linux-stable-rc-linux-4.9.y
- lkft/linux-stable-rc-linux-4.4.y
- lkft/linaro-hikey-stable-rc-4.4-oe
test_name: ltp-syscalls/inotify07
url: https://bugs.linaro.org/show_bug.cgi?id=3931
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP: inotify08 FAIL: didn't get event: mask=4
inotify08 is not supported on 4.14, 4.9 and 4.4
projects:
- lkft/linux-stable-rc-linux-4.14.y
- lkft/linux-stable-rc-linux-4.9.y
- lkft/linux-stable-rc-linux-4.4.y
- lkft/linaro-hikey-stable-rc-4.4-oe
test_name: ltp-syscalls/inotify08
url: https://bugs.linaro.org/show_bug.cgi?id=3881
active: false
intermittent: false
- environments: *environments_all
notes: >
fs:isofs Do not try to build iso's on embedded boards
projects: *projects_all
test_name: ltp-fs/isofs
url: https://bugs.linaro.org/show_bug.cgi?id=3318
active: true
intermittent: false
- test_names:
- ltp-fs/quota_remount_test01
notes: >
LKFT: arm64: Hikey: Juno: db410c:
ltp-fs/quota_remount_test01
quotaon: Quota format not supported in kernel
matrix_apply:
- environments: *environments_arm64
projects: *projects_all
- environments:
- qemu-i386
- qemu-x86_64
- qemu_i386
- qemu_x86_64
projects: *projects_all
url: https://bugs.linaro.org/show_bug.cgi?id=3354
active: true
intermittent: true
- environments: *environments_all
notes: >
LKFT: linux-mainline: HiKey and Juno: ltp-containers Network Namespaces
tests failed
projects: *projects_all
test_name: ltp-containers/netns_sysfs
url: https://bugs.linaro.org/show_bug.cgi?id=3327
active: true
intermittent: false
- environments: *environments_arm32
notes: >
LKFT: netns_netlink fails on x15 in mainline and 4.15
projects: *projects_all
test_name: ltp-containers/netns_netlink
url: https://bugs.linaro.org/show_bug.cgi?id=3484
active: true
intermittent: false
- environments: *environments_qemu
notes: >
LKFT: qemu: LTP skip failed timing test cases
projects: *projects_all
test_name: ltp-syscalls/clock_nanosleep02
url: https://bugs.linaro.org/show_bug.cgi?id=3768
active: true
intermittent: true
- environments: *environments_qemu
notes: >
LKFT: qemu: LTP skip failed timing test cases
projects: *projects_all
test_name: ltp-syscalls/epoll_wait02
url: https://bugs.linaro.org/show_bug.cgi?id=3768
active: true
intermittent: true
- environments: *environments_qemu
notes: >
LKFT: qemu: LTP skip failed timing test cases
projects: *projects_all
test_name: ltp-syscalls/futex_wait05
url: https://bugs.linaro.org/show_bug.cgi?id=3768
active: true
intermittent: true
- environments: *environments_qemu
notes: >
LKFT: qemu: LTP skip failed timing test cases
projects: *projects_all
test_name: ltp-syscalls/nanosleep01
url: https://bugs.linaro.org/show_bug.cgi?id=3768
active: true
intermittent: true
- environments: *environments_qemu
notes: >
LKFT: qemu: LTP skip failed timing test cases
projects: *projects_all
test_name: ltp-syscalls/poll02
url: https://bugs.linaro.org/show_bug.cgi?id=3768
active: true
intermittent: true
- environments: *environments_qemu_arm
notes: >
LKFT: LTP skip hackbench01/02 on qemu_arm and qemu_arm64 causing kernel
projects: *projects_all
test_name: ltp-sched/hackbench01
url: https://bugs.linaro.org/show_bug.cgi?id=3777
active: true
intermittent: false
- environments: *environments_qemu_arm
notes: >
LKFT: LTP skip hackbench01/02 on qemu_arm and qemu_arm64 causing kernel
projects: *projects_all
test_name: ltp-sched/hackbench02
url: https://bugs.linaro.org/show_bug.cgi?id=3777
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP CVE cve-2014-0196 newly running test case have different results on
different boards.
projects: *projects_all
test_name: ltp-cve/cve-2014-0196
url: https://bugs.linaro.org/show_bug.cgi?id=3858
active: true
intermittent: false
- environments: *environments_qemu_arm
notes: >
LKFT: qemu_arm32/64: LTP cve-2016-7117 Test timeouted, sending SIGKILL!
projects: *projects_all
test_name: ltp-cve/cve-2016-7117
url: https://bugs.linaro.org/show_bug.cgi?id=3884
active: true
intermittent: false
- environments: *environments_qemu_arm
notes: >
LKFT: qemu_arm: LTP CVE cve-2015-7550 Test timeouted, sending SIGKILL!
projects: *projects_all
test_name: ltp-cve/cve-2015-7550
url: https://bugs.linaro.org/show_bug.cgi?id=3883
active: true
intermittent: false
- environments: *environments_qemu_arm
notes: >
LKFT: qemu_arm: LTP CVE cve-2015-7550 Test timeouted, sending SIGKILL!
projects: *projects_all
test_name: ltp-syscalls/keyctl02
url: https://bugs.linaro.org/show_bug.cgi?id=3883
active: true
intermittent: false
- environments: *environments_all
notes: >
qemu_arm32/64: LTP select04 is not returning 0 on timeout
projects: *projects_all
test_name: ltp-syscalls/select04
url: https://bugs.linaro.org/show_bug.cgi?id=3852
active: true
intermittent: true
- environments: *environments_all
notes: >
LKFT: LTP: cve-2015-3290 should be skipped in all
projects: *projects_all
test_name: ltp-cve/cve-2015-3290
url: https://bugs.linaro.org/show_bug.cgi?id=3991
active: true
intermittent: true
- environments: *environments_all
notes: >
LKFT: LTP creat08 and open10 failed
testdir.B.3132/setgid: Incorrect modes, setgid bit should be set
skip these tests until this bug fixes on upstream LTP
projects: *projects_all
test_name: ltp-syscalls/open10
url: https://bugs.linaro.org/show_bug.cgi?id=3940
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP creat08 and open10 failed
testdir.B.3132/setgid: Incorrect modes, setgid bit should be set
skip these tests until this bug fixes on upstream LTP
projects: *projects_all
test_name: ltp-syscalls/creat08
url: https://bugs.linaro.org/show_bug.cgi?id=3940
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP open posix: pthread_rwlock_unlock_3-1.run-test failed - reader
did not get the lock when writer1 release the lock
projects: *projects_all
test_name: ltp-open-posix/pthread_rwlock_unlock_3-1
url: https://bugs.linaro.org/show_bug.cgi?id=3951
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP open posix: pthread_rwlock_rdlock_2-1 and
pthread_rwlock_rdlock_2-2 failed
projects: *projects_all
test_name: ltp-open-posix/pthread_rwlock_rdlock_2-1
url: https://bugs.linaro.org/show_bug.cgi?id=3952
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP open posix: pthread_rwlock_rdlock_2-2 and
pthread_rwlock_rdlock_2-2 failed
projects: *projects_all
test_name: ltp-open-posix/pthread_rwlock_rdlock_2-2
url: https://bugs.linaro.org/show_bug.cgi?id=3952
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP: open posix mmap_11-4 : Modification of the partial page at the
end of an object is written out
projects: *projects_all
test_name: ltp-open-posix/mmap_11-4
url: https://bugs.linaro.org/show_bug.cgi?id=3953
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP: open posix: clock_settime_8-1 intermittent failures on all
device
projects: *projects_all
test_name: ltp-open-posix/clock_settime_8-1
url: https://bugs.linaro.org/show_bug.cgi?id=3965
active: true
intermittent: true
- environments:
- i386
- x86
- x86-kasan
notes: >
LKFT: LTP: open posix: schedule_1-1 intermittent failures on x86 and i386
running 4.14 stable kernel.
projects:
- lkft/linux-stable-rc-linux-4.14.y
test_name: ltp-open-posix/schedule_1-1
url: https://bugs.linaro.org/show_bug.cgi?id=5528
active: true
intermittent: true
- environments:
- dragonboard-410c
- hi6220-hikey
notes: >
LKFT: hikey: LTP: FS: read_all: kernel BUG: sleeping function called
from invalid context percpu-rwsem.h:34 - regmap_mmio_read32le+0x24/0x38
projects: *projects_all
test_name: ltp-fs/read_all_sys
url: https://bugs.linaro.org/show_bug.cgi?id=3903
active: true
intermittent: true
- environments:
- qemu-arm64
- qemu-armv7
- qemu_arm
- qemu_arm64
notes: >
LKFT: LTP: cve-2017-2671 times out for mainline in qemu_arm and
qemu_arm64. consider known issue until qemu in arm has accel.
projects: *projects_all
test_name: ltp-cve/cve-2017-2671
url: https://bugs.linaro.org/show_bug.cgi?id=4024
active: true
intermittent: true
- environments:
- i386
- qemu-i386
- qemu_i386
notes: >
meltdown.c:373: FAIL: I was able to read your kernel memory!!!
Decide if we want to have PAGE TABLE ISOLATION configured for our i386 builds or not.
If yes, then enable 3 config options
CONFIG_PAGE_TABLE_ISOLATION
CONFIG_X86_PAE
CONFIG_HIGHMEM64G
in our build recipes.
If not, mark this test as known issue for i386.
projects: *projects_all
test_name: ltp-cve/cve-2017-5754
url: https://bugs.linaro.org/show_bug.cgi?id=4135
active: true
intermittent: true
- environments:
- i386
- qemu-arm64
- qemu-armv7
- qemu-i386
- qemu-x86_64
- qemu_arm
- qemu_arm64
- qemu_i386
- qemu_x86_64
notes: >
LTP CVE cve-2017-17053 fails intermittently.
Marking this test as known issue for i386 and qemu_i386.
projects: *projects_all
test_name: ltp-cve/cve-2017-17053
url: https://bugs.linaro.org/show_bug.cgi?id=3887
active: true
intermittent: true
- environments: *environments_all
notes: >
LTP: fsetxattr02 and fgetxattr02 failed with error ENXIO
(No such device or address)
projects: *projects_all
test_name: ltp-syscalls/fsetxattr02
url: https://bugs.linaro.org/show_bug.cgi?id=4011
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP: fsetxattr02 and fgetxattr02 failed with error ENXIO
(No such device or address)
projects: *projects_all
test_names:
- ltp-syscalls/fgetxattr02
- ltp-syscalls-compat/fgetxattr02
- ltp-syscalls-64k-page_size/fgetxattr02
- ltp-syscalls-kasan/fgetxattr02
url: https://bugs.linaro.org/show_bug.cgi?id=4011
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP: statx04 STATX_ATTR_COMPRESSED flag is not set for ext2
projects: *projects_all
test_names:
- ltp-syscalls/statx04
- ltp-syscalls-compat/statx04
- ltp-syscalls-kasan/statx04
- ltp-syscalls-64k-page_size/statx04
url: https://bugs.linaro.org/show_bug.cgi?id=4012
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP: execveat03.c:74: FAIL: execveat() returned unexpected errno: EINVAL
projects: *projects_all
test_name: ltp-syscalls/execveat03
url: https://bugs.linaro.org/show_bug.cgi?id=4010
active: true
intermittent: false
- environments: *environments_all
notes: >
keyctl05: use data that passes dns_resolver_preparse() check
projects: *projects_all
test_name: ltp-syscalls/keyctl05
url: http://lists.linux.it/pipermail/ltp/2018-October/009752.html
active: true
intermittent: false
- environments: *environments_all
notes: >
LKFT: LTP: open posix: condvar_pthread_cond_wait_1 intermittent failures
on all devices
projects: *projects_all
test_name: ltp-open-posix/condvar_pthread_cond_wait_1
url: https://bugs.linaro.org/show_bug.cgi?id=3973
active: true
intermittent: true
- environments: *environments_all
notes: >
LTP: mm: vma05 1 TFAIL: [vdso] bug not patched
There are missing symbols due to binary stripped
projects: *projects_all
test_name: ltp-mm/vma05
url: https://bugs.linaro.org/show_bug.cgi?id=4256
active: true
intermittent: false
- environments: *environments_64bit
notes: >
LTP: mm: overcommit_memory.c:237: BROK: Unexpected error: CommitLimit < Committed_AS
projects: *projects_all
test_name: ltp-mm/overcommit_memory02
url: https://bugs.linaro.org/show_bug.cgi?id=4257
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP: mm: mem.c:782: BROK: mount /dev/cgroup: ENOENT
Need CONFIG_MEMCG in all config fragments for all kernels in all boards
projects: *projects_all
test_names:
- ltp-mm/ksm03
- ltp-mm/ksm03_1
- ltp-mm-64k-page_size/ksm03_1
url: https://bugs.linaro.org/show_bug.cgi?id=4255
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP: cpuhotplug05: TBROK: Field 3 is '(hikey)', '0.00' expected
cpuhotplug03: No cpuhotplug_do_spin_loop processes found on CPU1
projects: *projects_all
test_names:
- ltp-cpuhotplug/cpuhotplug05
- ltp-cpuhotplug/cpuhotplug03
url: https://bugs.linaro.org/show_bug.cgi?id=4264
active: true
intermittent: true
- environments: *environments_all
notes: >
LTP: fanotify09.c:202: FAIL: first group got more than 2 events (72 > 48)
FAIL: group 1 got event: mask 10 pid=21076 fd=9
path=/tmp/ltp-N3rSEWsnUd/OofPg2/mntpoint
FAIL: group 2 got event: mask 10 pid=21076 fd=9
path=/tmp/ltp-N3rSEWsnUd/OofPg2/mntpoint
projects: *projects_all
test_names:
- ltp-syscalls/fanotify09
url: https://bugs.linaro.org/show_bug.cgi?id=4271
active: true
intermittent: false
- environments: *environments_all
notes: >
Newly added LTP syscalls test case fanotify10 with ext2 opts failed
on 4.9 and 4.4 kernel branch.
fanotify10.c:293: FAIL: group 0 (prio 1) with FAN_MARK_INODE and
FAN_MARK_MOUNT ignore mask got event
projects:
- lkft/linux-stable-rc-linux-4.9.y
- lkft/linux-stable-rc-linux-4.4.y
- lkft/linaro-hikey-stable-rc-4.4-oe
test_names:
- ltp-syscalls/fanotify10
url: https://bugs.linaro.org/show_bug.cgi?id=4292
active: true
intermittent: false
- environments:
- dragonboard-410c
- hi6220-hikey
notes: >
fanotify01.c:256: FAIL: got event: mask=2 (expected 20) pid=3248 fd=8
fanotify01 failed on hikey and dragonboard410c boards all kernel versions
projects: *projects_all
test_names:
- ltp-syscalls/fanotify01
url: https://bugs.linaro.org/show_bug.cgi?id=4261
active: true
intermittent: true
- environments:
- qemu-armv7
- qemu_arm
- x15
notes: >
CONFIG_TASKSTATS and CONFIG_TASK_IO_ACCOUNTING to be set in kernel config
projects: *projects_all
test_names:
- ltp-syscalls/readahead02
url: https://bugs.linaro.org/show_bug.cgi?id=4262
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP memory test case mtest06/mmap1 longs for 15 minutes and more and
failures few times and it is an intermittent issue.
Test frequently fails on qemu_arm64, dragonboard, hikey and Juno.
projects: *projects_all
test_name: ltp-mm/mtest06
url: https://bugs.linaro.org/show_bug.cgi?id=4273
active: true
intermittent: true
- environments:
- i386
- qemu-armv7
- qemu-i386
- qemu-x86_64
- qemu_arm
- qemu_i386
- qemu_x86_64
- x15
- x86
- x86-kasan
notes: >
LTP: fanotify option FAN_REPORT_TID is missing
fanotify11.c:68: CONF: FAN_REPORT_TID not supported in kernel?
projects: *projects_all
test_names:
- ltp-syscalls/fanotify11
url: https://bugs.linaro.org/show_bug.cgi?id=4246
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP syscalls test preadv201/ preadv201_64 failed on 4.4 on all devices.
projects:
- lkft/linux-stable-rc-linux-4.4.y
- lkft/linaro-hikey-stable-rc-4.4-oe
test_names:
- ltp-syscalls/preadv201
- ltp-syscalls/preadv201_64
url: https://bugs.linaro.org/show_bug.cgi?id=4291
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP syscalls test pwritev201/ pwritev201_64 failed on 4.4 on all devices.
projects:
- lkft/linux-stable-rc-linux-4.4.y
- lkft/linaro-hikey-stable-rc-4.4-oe
test_names:
- ltp-syscalls/pwritev201
- ltp-syscalls/pwritev201_64
url: https://bugs.linaro.org/show_bug.cgi?id=5298
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP commands mkswap01_sh failed on all devices - intermittent timeout
projects: *projects_all
test_names:
- ltp-commands/mkswap01_sh
- ltp-commands-64k-page_size/mkswap01_sh
- ltp-commands-kasan/mkswap01_sh
- ltp-commands-compat/mkswap01_sh
url: https://bugs.linaro.org/show_bug.cgi?id=4303
active: true
intermittent: true
- environments:
- qemu-armv7
- qemu_arm
notes: >
LTP: dio: dio13 No space left on device
This is a limitation of qemu_arm32
projects: *projects_all
test_names:
- ltp-dio/dio13
url: https://bugs.linaro.org/show_bug.cgi?id=4304
active: true
intermittent: false
- environments: *environments_all
notes: >
LTP: mount02 was expected EINVAL(22) but got ENOENT(2): No such file or directory
Both new error codes EINVAL and ENOTBLK to be added to test case
projects:
- lkft/linux-mainline-master
test_names:
- ltp-syscalls/mount02
url: https://bugs.linaro.org/show_bug.cgi?id=4310
active: true
intermittent: false
- environments:
- juno-64k_page_size
- juno-r2
- juno-r2-compat
- juno-r2-kasan
- qemu-arm64
- qemu-arm64-clang
- qemu-arm64-debug
- qemu-arm64-kasan
- qemu_arm64
- rk3399-rock-pi-4b
- x15
notes: >
LTP: getrusage04 failed - stime increased > 6000u
intermittently failed on x15 and juno-r2
projects: *projects_all
test_names:
- ltp-syscalls/getrusage04
url: https://bugs.linaro.org/show_bug.cgi?id=3507
active: true
intermittent: true
- environments: *environments_arm64
notes: >
From LTP 20190517 release these new test cases got added and on all arm64 devices
ioctl_ns05 and ioctl_ns06 getting failed
tst_checkpoint.c:162 BROK ioctl_ns05.c:83 tst_checkpoint_wake(0, 1, 10000) ETIMEDOUT
projects: *projects_all
test_names:
- ltp-syscalls/ioctl_ns05
- ltp-syscalls/ioctl_ns06
url: https://bugs.linaro.org/show_bug.cgi?id=5296
active: true
intermittent: false
- environments: *environments_qemu
notes: >