summaryrefslogtreecommitdiff
path: root/openembedded
diff options
context:
space:
mode:
authorGary S. Robertson <gary.robertson@linaro.org>2014-05-22 12:18:47 -0500
committerGary S. Robertson <gary.robertson@linaro.org>2014-05-23 07:41:33 -0500
commit0375046670045d8c54df623515fd949cdd166619 (patch)
tree939623aaecf1b2ac503ccf489c55de5e9d183133 /openembedded
parent4570ec7fea1e7f735dff23c63f2a8edab7a34e38 (diff)
Set default cyclictest run time to 2 hrs
For regression test and relative performance measurement purposes it is not necessary to run cyclictest for a full 24 hours. Consequently this patch shortens the default runtime for cyclictest to 2 hours in order to obtain a result more quickly and free up lab resources more quickly. Change-Id: I2b71308d840f6d8a6f0e3ed488b43178537324fa Signed-off-by: Gary S. Robertson <gary.robertson@linaro.org>
Diffstat (limited to 'openembedded')
-rw-r--r--openembedded/cyclictest.yaml7
1 files changed, 4 insertions, 3 deletions
diff --git a/openembedded/cyclictest.yaml b/openembedded/cyclictest.yaml
index d895219..0273e2b 100644
--- a/openembedded/cyclictest.yaml
+++ b/openembedded/cyclictest.yaml
@@ -1,7 +1,7 @@
metadata:
name: cyclictest
format: "Lava-Test-Shell Test Definition 1.0"
- version: 1.0
+ version: 1.1
description: "Cyclictest Suite"
maintainer:
- vincent.hsu@linaro.org
@@ -19,16 +19,17 @@ metadata:
# MAX: Maximum latency bound.
# AVG: Average latency bound.
# RTIME: Running time. Must set this longer than 60.
+# (changed so default RTIME is two hours - GSR)
params:
MAX: 15000
AVG: 50
- RTIME: 86400
+ RTIME: 7200
run:
steps:
- "taskset -c 1 fping -g 127.0.0.1 127.0.0.10 -t 100 -q -l &> /dev/null &"
- "taskset -c 1 ./openembedded/scripts/infinite_loop.py $(expr $RTIME - 60) &> /dev/null &"
- - "taskset -c 1 cyclictest -t 1 -p 80 -i 10000 -n -a1 -v -D $(expr $RTIME / 24) > ~/cyclictest_full.log &"
+ - "taskset -c 1 cyclictest -t 1 -p 80 -i 10000 -n -a1 -v -D $(expr $RTIME / 2) > ~/cyclictest_full.log &"
- "taskset -c 1 cyclictest -t 50 -p 80 -i 10000 -n -a1 -q -D $RTIME > ~/cyclictest_summary.log"
- "cat ~/cyclictest_summary.log | ./openembedded/scripts/cyclictest.py $MAX $AVG"
- "lava-test-run-attach ~/cyclictest_summary.log text/plain"