aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorNaresh Kamboju <naresh.kamboju@linaro.org>2015-08-03 19:38:24 +0530
committerNaresh Kamboju <naresh.kamboju@linaro.org>2015-08-11 00:38:45 +0530
commit507faeeaacc41683240e927ea628169a5f5d2cd6 (patch)
tree35885b32225d6d74ae5efe2145f4c87f3cf9caeb /templates
parentf236f32abf8419090574da4c8aa6939acf3fe973 (diff)
KVM: Adding KVM device as host to run wa tool
Following features are added * KVM device replacing dummy-ssh devices * Dynamically fetch and install wa tool on kvm device * KVM connects Android device over IP and run wa tool Change-Id: If292ec59d83b2f0d5d41160a8485a3b6014889be Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Diffstat (limited to 'templates')
-rwxr-xr-xtemplates/config.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/config.py b/templates/config.py
new file mode 100755
index 0000000..43f18df
--- /dev/null
+++ b/templates/config.py
@@ -0,0 +1,26 @@
+reboot_policy = 'never'
+instrumentation = [
+ 'execution_time',
+ #'daq',
+ #'interrupts',
+ #'cpufreq',
+ 'hwmon',
+ #'perf',
+ #'streamline',
+]
+
+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',
+}
+
+device_config = dict(
+ adb_name="$ipaddr"
+)