summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openembedded/pwrmgmt.yaml5
-rw-r--r--ubuntu/pwrmgmt.yaml5
2 files changed, 8 insertions, 2 deletions
diff --git a/openembedded/pwrmgmt.yaml b/openembedded/pwrmgmt.yaml
index f31e967..2ea3c18 100644
--- a/openembedded/pwrmgmt.yaml
+++ b/openembedded/pwrmgmt.yaml
@@ -18,10 +18,13 @@ install:
steps:
- "cd pm-qa && make -C utils"
+params:
+ PWR_TESTARG: cpufreq cpuidle cpuhotplug thermal cputopology
+
run:
steps:
- cd pm-qa
- - make -k check
+ - for testset in $PWR_TESTARG; do make -C $testset check; done
parse:
pattern: "^(?P<test_case_id>[\\w/\\.]+):\\s+(?P<message>.+)\\.\\.\\.\\s+(?P<result>\\w+)"
diff --git a/ubuntu/pwrmgmt.yaml b/ubuntu/pwrmgmt.yaml
index 6a566da..ee94a15 100644
--- a/ubuntu/pwrmgmt.yaml
+++ b/ubuntu/pwrmgmt.yaml
@@ -23,10 +23,13 @@ install:
steps:
- "cd pm-qa && make -C utils"
+params:
+ PWR_TESTARG: cpufreq cpuidle cpuhotplug thermal cputopology
+
run:
steps:
- cd pm-qa
- - make -k check
+ - for testset in $PWR_TESTARG; do make -C $testset check; done
parse:
pattern: "^(?P<test_case_id>[\\w/\\.]+):\\s+(?P<message>.+)\\.\\.\\.\\s+(?P<result>\\w+)"