Skip to content

Commit dd21ab4

Browse files
anoopcs9spuiuk
authored andcommitted
containers/ltp: Update the custom list of tests
Recently ltp container image was rebuilt based on the latest sources. Accordingly update the list of tests as per the expectation based on the list of passing tests (from QE) on EL9 kernel versions. Few tests had to be excluded as their corresponding updated sources requires support for mknod, mkfifo, symlink etc. which are not available with the way we perform the kernel CIFS mount. Signed-off-by: Anoop C S <[email protected]>
1 parent 2d86a2c commit dd21ab4

File tree

1 file changed

+62
-16
lines changed

1 file changed

+62
-16
lines changed

testcases/containers/images/ltp/run_ltp.sh

Lines changed: 62 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,56 @@ TESTDIR="${1:-"/testdir"}"
66
declare -a LTP_TESTS=(
77
"aio01"
88
"aio02"
9+
"chdir01"
910
"chdir04"
1011
"close01"
1112
"close02"
13+
"close_range01"
14+
"close_range02"
1215
"creat01"
1316
"creat03"
17+
"creat04"
1418
"diotest1"
1519
"diotest2"
1620
"diotest3"
1721
"diotest5"
1822
"diotest6"
1923
"faccessat01"
24+
"dup01"
25+
"dup02"
26+
"dup03"
27+
"dup04"
28+
"fallocate02"
29+
"fallocate04"
30+
"fallocate05"
31+
"fallocate06"
32+
"fchdir01"
33+
"fchdir02"
34+
"fchmod06"
35+
"fchmodat02"
36+
"fchown01"
37+
"fchown04"
38+
"fcntl01"
39+
"fcntl02"
40+
"fcntl03"
41+
"fcntl04"
42+
"fcntl05"
2043
"fdatasync01"
2144
"fdatasync02"
45+
"fgetxattr01"
2246
"fgetxattr03"
2347
"flock01"
24-
"flock02"
2548
"flock03"
2649
"flock04"
2750
"flock06"
51+
"fremovexattr01"
52+
"fremovexattr02"
53+
"fsetxattr01"
54+
"fstat03"
55+
"fstatat01"
56+
"fstatfs01"
2857
"fstatfs02"
58+
"fsync01"
2959
"fsync02"
3060
"ftest01"
3161
"ftest02"
@@ -37,20 +67,23 @@ declare -a LTP_TESTS=(
3767
"ftest08"
3868
"ftruncate01"
3969
"ftruncate03"
70+
"getcwd01"
71+
"getcwd02"
72+
"getdents01"
73+
"getdents02"
4074
"inode01"
4175
"inode02"
4276
"lftest"
4377
"link02"
44-
"link03"
4578
"link05"
4679
"llseek01"
4780
"llseek02"
4881
"llseek03"
82+
"lremovexattr01"
4983
"lseek01"
5084
"lseek07"
51-
"mkdirat01"
52-
"mknodat01"
53-
"mmap001"
85+
"mkdir04"
86+
"mkdir09"
5487
"mmap01"
5588
"mmap02"
5689
"mmap03"
@@ -66,51 +99,64 @@ declare -a LTP_TESTS=(
6699
"mmap19"
67100
"mmap20"
68101
"munmap01"
69-
"munmap02"
70102
"munmap03"
103+
"open02"
71104
"open03"
72105
"open09"
73106
"open13"
74107
"openat01"
108+
"openat02"
75109
"openfile"
110+
"open_tree01"
111+
"open_tree02"
76112
"pread01"
77113
"pread02"
78114
"preadv01"
79115
"preadv02"
80-
"preadv201"
81-
"preadv202"
82116
"pwrite01"
83117
"pwrite02"
84118
"pwrite03"
85119
"pwrite04"
86120
"pwritev01"
87121
"pwritev02"
88-
"pwritev201"
89-
"pwritev202"
90122
"read01"
91123
"read02"
92124
"read04"
93125
"readahead01"
94126
"readdir01"
95127
"readv01"
96128
"readv02"
129+
"realpath01"
97130
"removexattr01"
98131
"removexattr02"
132+
"rename01"
133+
"rename03"
134+
"rename04"
135+
"rename05"
136+
"rename06"
137+
"rename07"
138+
"rename08"
139+
"rename10"
140+
"rename12"
141+
"rename13"
99142
"rename14"
100143
"rmdir01"
144+
"rmdir03"
145+
"setxattr01"
101146
"stat02"
147+
"statfs01"
148+
"statx03"
149+
"statx04"
150+
"statx08"
102151
"truncate02"
103152
"unlink07"
153+
"unlinkat01"
154+
"ustat01"
155+
"ustat02"
104156
"write01"
105157
"write02"
106-
"write03"
107-
"write05"
108-
"write06"
109158
"writev01"
110159
"writev02"
111-
"writev05"
112-
"writev06"
113-
"writev07"
114160
)
115161

116162
ERROR_MSG=()

0 commit comments

Comments
 (0)