mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
3b0601ab27
commit
bcacd18175
6
meta/lib/oeqa/runtime/files/test.py
Normal file
6
meta/lib/oeqa/runtime/files/test.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import os
|
||||
|
||||
os.system('touch /tmp/testfile.python')
|
||||
|
||||
a = 9.01e+21 - 9.01e+21 + 0.01
|
||||
print "the value of a is %s" % a
|
||||
Reference in New Issue
Block a user