aboutsummaryrefslogtreecommitdiff
path: root/templates/config-generic-linux-local.py
diff options
context:
space:
mode:
authorChase Qi <chase.qi@linaro.org>2016-04-13 18:20:29 +0800
committerChase Qi <chase.qi@linaro.org>2016-04-14 16:38:20 +0800
commit72f8557aab0adfefb57be56a617843b6496c9e85 (patch)
treee830a8b6b32aa6d85c716788399627b993031275 /templates/config-generic-linux-local.py
parentb0de0286616aa9389165f992cae85ae3835d3336 (diff)
Added support for WA2 Linux local run
Run WA2 on Linux through loopback interface on local device. Change-Id: I1da12c1bb42c7559a523bae277f0ea3bd21cc651 Signed-off-by: Chase Qi <chase.qi@linaro.org>
Diffstat (limited to 'templates/config-generic-linux-local.py')
-rwxr-xr-xtemplates/config-generic-linux-local.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/config-generic-linux-local.py b/templates/config-generic-linux-local.py
new file mode 100755
index 0000000..455d447
--- /dev/null
+++ b/templates/config-generic-linux-local.py
@@ -0,0 +1,24 @@
+reboot_policy = 'never'
+execution_order = 'by_iteration'
+instrumentation = [
+ 'execution_time',
+]
+result_processors = [
+ 'standard',
+ 'csv',
+ 'json',
+ 'sqlite'
+]
+logging = {
+ 'file format': '%(asctime)s %(levelname)-8s %(name)s: %(message)s',
+ 'verbose format': '%(asctime)s %(levelname)-8s %(name)s: %(message)s',
+ 'regular format': '%(levelname)-8s %(message)s',
+ 'colour_enabled': True,
+}
+
+device = 'generic_linux'
+device_config = dict(
+ host = '127.0.0.1',
+ username = 'root',
+ password = 'linarolinaro'
+)