summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/python.py
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2016-12-05 17:04:42 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-23 12:05:19 +0000
commitba1aec3407e38f4dc4141e4d6300b3d538dc9dd3 (patch)
tree43114a5dafed2bc67ca451ff31432f5b98065780 /meta/lib/oeqa/runtime/python.py
parente5f05409d073f089f4e1a78197e5c6cae6e04809 (diff)
downloadpoky-ba1aec3407e38f4dc4141e4d6300b3d538dc9dd3.tar.gz
oeqa: Fix files handling on runtime tests.
Common files was move to oeqa/files from oeqa/runtime/files because the same files are used across Runtime,SDK,eSDK tests. (From OE-Core rev: f099302efe8f222c3e4ae3604429f5ede4fd8c67) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/python.py')
-rw-r--r--meta/lib/oeqa/runtime/python.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/python.py b/meta/lib/oeqa/runtime/python.py
index 29a231c7c3..93e822c71c 100644
--- a/meta/lib/oeqa/runtime/python.py
+++ b/meta/lib/oeqa/runtime/python.py
@@ -12,7 +12,7 @@ class PythonTest(oeRuntimeTest):
12 12
13 @classmethod 13 @classmethod
14 def setUpClass(self): 14 def setUpClass(self):
15 oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "test.py"), "/tmp/test.py") 15 oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.corefilesdir, "test.py"), "/tmp/test.py")
16 16
17 @testcase(1145) 17 @testcase(1145)
18 def test_python_exists(self): 18 def test_python_exists(self):