summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2013-03-25 17:31:20 +0100
committerMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2013-03-25 18:51:45 +0100
commitb83d91d4b74f2ce5d8667033a726ea7f0f8526a5 (patch)
tree0502cc9040f918ae3ec085e44fbf1b4833660e7c
parent78d1c88bd843a6a887522d93e15a48e7e160cd07 (diff)
OE: copied device-tree, perf, pwrmgmt from Ubuntu and killed all deps
We need new lava-test-runner to get install phase working for OE images. But we do not have to install anything anyway :) http://validation.linaro.org/lava-server/scheduler/job/50254 had all those tests running! Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
-rw-r--r--oe/device-tree.yaml25
-rw-r--r--oe/perf.yaml16
-rw-r--r--oe/pwrmgmt.yaml18
3 files changed, 59 insertions, 0 deletions
diff --git a/oe/device-tree.yaml b/oe/device-tree.yaml
new file mode 100644
index 0000000..a7d7f24
--- /dev/null
+++ b/oe/device-tree.yaml
@@ -0,0 +1,25 @@
+metadata:
+ name: device-tree
+ format: "Lava-Test-Shell Test Definition 1.0"
+ description: "Device tree test to check the folder structure."
+ os:
+ - ubuntu
+ devices:
+ - origen
+ - snowball
+ - panda
+ - panda-es
+ - vexpress
+ environment:
+ - lava-test-shell
+
+install:
+ bzr-repos:
+ - lp:~linaro-foundations/linaro-ubuntu/lava-test-device-tree
+
+run:
+ steps:
+ - "cd lava-test-device-tree; sudo bash -x ./run-test.sh"
+
+parse:
+ pattern: "(?P<test_case_id>[a-zA-Z0-9_-]+):\\s(?P<result>\\w+)"
diff --git a/oe/perf.yaml b/oe/perf.yaml
new file mode 100644
index 0000000..fb10012
--- /dev/null
+++ b/oe/perf.yaml
@@ -0,0 +1,16 @@
+metadata:
+ name: perf
+ format: "Lava-Test-Shell Test Definition 1.0"
+ description: "Performance tests in ubuntu."
+
+install:
+ bzr-repos:
+ - lp:~linaro-maintainers/lava-test/lava-test-perf
+
+run:
+ steps:
+ - cd lava-test-perf
+ - sudo bash -x ./run-perf-test.sh
+
+parse:
+ pattern: "^(?P<test_case_id>perf[\\w\\s-]+)\\s+:\\s+(?P<result>\\w+)"
diff --git a/oe/pwrmgmt.yaml b/oe/pwrmgmt.yaml
new file mode 100644
index 0000000..d40d964
--- /dev/null
+++ b/oe/pwrmgmt.yaml
@@ -0,0 +1,18 @@
+metadata:
+ name: pwrmgmt
+ format: "Lava-Test-Shell Test Definition 1.0"
+ description: "Test power management."
+
+install:
+ git-repos:
+ - git://git.linaro.org/tools/pm-qa.git
+ steps:
+ - "cd pm-qa && make -C utils"
+
+run:
+ steps:
+ - cd pm-qa
+ - make -k check
+
+parse:
+ pattern: "^(?P<test_case_id>[\\w/\\.]+):\\s+(?P<message>.+)\\.\\.\\.\\s+(?P<result>\\w+)"