Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bf7f211

Browse files
committedFeb 21, 2023
test-configs.yaml: Use the kselftest-slim fragment by default for kselftest
The smaller kselftest-slim configs boot much more easily on u-boot platforms which aren't able to automatically place images so have fixed size regions they download binaries to so use them as the default configuration for everything except cpufreq and LKDTM which are not included in the slim configuration. Signed-off-by: Mark Brown <[email protected]>
1 parent e6b2d2f commit bf7f211

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed
 

‎config/core/test-configs.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ default_filters:
5050
- ['x86_64', 'x86_64_defconfig+x86-chromebook']
5151

5252
- blocklist: &kselftest_defconfig_filter
53-
defconfig: ['kselftest']
53+
defconfig: ['kselftest', 'kselftest-slim']
5454

5555
device_types:
5656

@@ -226,15 +226,15 @@ test_plans:
226226
rootfs: debian_bullseye-kselftest_nfs
227227
pattern: 'kselftest/{category}-{method}-{protocol}-{rootfs}-kselftest-template.jinja2'
228228
filters:
229-
- passlist: {defconfig: ['kselftest']}
229+
- passlist: {defconfig: ['kselftest-slim']}
230230

231231
# Add _a_ into the name so we can keep this before the individual
232232
# definitions
233233
kselftest_a_qemu: &kselftest_qemu
234234
rootfs: debian_bullseye-kselftest_ramdisk
235235
pattern: 'kselftest/{category}-{method}-{rootfs}-kselftest-template.jinja2'
236236
filters:
237-
- passlist: {defconfig: ['kselftest']}
237+
- passlist: {defconfig: ['kselftest-slim']}
238238

239239
kselftest-alsa:
240240
<<: *kselftest
@@ -284,6 +284,9 @@ test_plans:
284284
params:
285285
job_timeout: '10'
286286
kselftest_collections: "cpufreq"
287+
filters: &kselftest_full_fragment
288+
- passlist: {defconfig: ['kselftest']}
289+
- blocklist: {defconfig: ['kselftest-slim']}
287290

288291
kselftest-exec:
289292
<<: *kselftest
@@ -343,6 +346,7 @@ test_plans:
343346
params:
344347
job_timeout: '10'
345348
kselftest_collections: "lkdtm"
349+
filters: *kselftest_full_fragment
346350

347351
kselftest-membarrier:
348352
<<: *kselftest

0 commit comments

Comments
 (0)
Please sign in to comment.