summaryrefslogtreecommitdiff
path: root/ubuntu
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu')
-rw-r--r--ubuntu/ltp-ddt.yaml37
1 files changed, 37 insertions, 0 deletions
diff --git a/ubuntu/ltp-ddt.yaml b/ubuntu/ltp-ddt.yaml
new file mode 100644
index 0000000..d9703f8
--- /dev/null
+++ b/ubuntu/ltp-ddt.yaml
@@ -0,0 +1,37 @@
+metadata:
+ name: ltp_ddt
+ format: "Lava-Test-Shell Test Definition 1.0"
+ version: 20151112
+ description: "Run LTP-DDT test suite on Debian."
+ maintainer:
+ - milosz.wasilewski@linaro.org
+ - timothy.anzaku@linaro.org
+ os:
+ - debian
+ scope:
+ - functional
+ devices:
+ - dragonboard410c
+ - hikey
+
+params:
+ TST_CMDFILES: ddt/memtest
+ PLATFORM: hikey
+ PATTERNS: MEMORY_M_FUNC_MEMTESTER_10pct_1time
+
+run:
+ steps:
+ - './common/scripts/ltp-ddt.sh -f $TST_CMDFILES -P $PLATFORM -s $PATTERNS'
+
+parse:
+ pattern: "^(?!.+ED)(?P<test_case_id>\\w+)\\s+(?P<result>\\w+)\\s+\\d$"
+ fixupdict:
+ FAIL: fail
+ PASS: pass
+# To run LTP-DDT tests through this yaml script, it is assumed that
+# the ltp-ddt test has been pre-installed in the debian image.
+# More information about the ltp-ddt test suite can be found at
+# http://arago-project.org/git/projects/test-automation/ltp-ddt.git
+# WARNING: The test parameters for most usecases will defer from the default
+# TST_CMDFILES, PLATFORM, and PATTERNS. Please set appropriate parameters
+# in your test job.