summaryrefslogtreecommitdiff
path: root/openembedded
diff options
context:
space:
mode:
Diffstat (limited to 'openembedded')
-rw-r--r--openembedded/ltp.yaml5
-rwxr-xr-xopenembedded/scripts/ltpfixup.sh2
2 files changed, 5 insertions, 2 deletions
diff --git a/openembedded/ltp.yaml b/openembedded/ltp.yaml
index 8dd765d..9dc4c8f 100644
--- a/openembedded/ltp.yaml
+++ b/openembedded/ltp.yaml
@@ -13,9 +13,12 @@ metadata:
devices:
- rtsm_ve-armv8
+params:
+ TST_CMDFILES: syscalls,mm,math,timers,fcntl-locktests,ipc,fsx,fs,hugetlb
+
run:
steps:
- - './openembedded/scripts/ltpfixup.sh'
+ - './openembedded/scripts/ltpfixup.sh $TST_CMDFILES'
parse:
pattern: "^(?P<test_case_id>\\S+)\\s+(?P<result>\\w+)\\s+.+"
diff --git a/openembedded/scripts/ltpfixup.sh b/openembedded/scripts/ltpfixup.sh
index 7ac7fe5..3374d58 100755
--- a/openembedded/scripts/ltpfixup.sh
+++ b/openembedded/scripts/ltpfixup.sh
@@ -1,6 +1,6 @@
#!/bin/sh
cd /opt/ltp
-./runltp -p -q -f syscalls,mm,math,timers,fcntl-locktests,ipc,fsx,fs,hugetlb
+./runltp -p -q -f $1
find ./results -name "LTP_RUN_ON*" -print0 |xargs -0 cat
exit 0