summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/files
diff options
context:
space:
mode:
authorTing Wang <ting.wang@windriver.com>2014-01-03 13:36:51 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-06 11:14:01 +0000
commitbcacd181758b5ffaef4eab6cfb9947cf536fa2cb (patch)
tree3e5e8b958c5730bb766c6abc0e67a65cab356d1e /meta/lib/oeqa/runtime/files
parent3b0601ab271b7ba3fb1961b6e31d694f91931e40 (diff)
downloadpoky-bcacd181758b5ffaef4eab6cfb9947cf536fa2cb.tar.gz
lib/oeqa/runtime: add test for python
Run a python script on the target 1)checks the output. 2)Call os.system method create a testfile (From OE-Core rev: 4465c9368b0c37a3a2c41b68f65de08690a8179b) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/files')
-rw-r--r--meta/lib/oeqa/runtime/files/test.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/files/test.py b/meta/lib/oeqa/runtime/files/test.py
new file mode 100644
index 0000000000..f3a2273c52
--- /dev/null
+++ b/meta/lib/oeqa/runtime/files/test.py
@@ -0,0 +1,6 @@
1import os
2
3os.system('touch /tmp/testfile.python')
4
5a = 9.01e+21 - 9.01e+21 + 0.01
6print "the value of a is %s" % a