summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-08-28 12:56:45 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-28 23:36:08 +0100
commit4e62e9cb7655669c8e4048e678d8858f8b9f5214 (patch)
tree22b826d21a33d93f12cfe949db80b8a5a6325503 /meta/lib
parenta79afb3c913f90966a05f7dcc9059e0657f247fc (diff)
downloadpoky-4e62e9cb7655669c8e4048e678d8858f8b9f5214.tar.gz
lib/oeqa/runtime: remove some unnecessary checks from setUpModule
These checks are unnecessary. setUpModule is run when a module is loaded and we shouldn't run commands on the target here, (plus if ssh doesn't work we error out in setup multiple times, instead of skipping the real test, which might depend on test_ssh). (From OE-Core rev: 188acd0a75e188fd7c0d2979acaf13fd18b12106) Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/runtime/date.py3
-rw-r--r--meta/lib/oeqa/runtime/df.py2
-rw-r--r--meta/lib/oeqa/runtime/dmesg.py2
-rw-r--r--meta/lib/oeqa/runtime/vnc.py2
4 files changed, 1 insertions, 8 deletions
diff --git a/meta/lib/oeqa/runtime/date.py b/meta/lib/oeqa/runtime/date.py
index d6c04cb0f7..3b35964763 100644
--- a/meta/lib/oeqa/runtime/date.py
+++ b/meta/lib/oeqa/runtime/date.py
@@ -2,9 +2,6 @@ from oeqa.oetest import oeRuntimeTest
2from oeqa.utils.decorators import * 2from oeqa.utils.decorators import *
3import re 3import re
4 4
5def setUpModule():
6 skipModuleUnless(oeRuntimeTest.tc.target.run('which date')[0] == 0, "No date in image or no connection")
7
8class DateTest(oeRuntimeTest): 5class DateTest(oeRuntimeTest):
9 6
10 def setUp(self): 7 def setUp(self):
diff --git a/meta/lib/oeqa/runtime/df.py b/meta/lib/oeqa/runtime/df.py
index c9119898dc..b6da35027c 100644
--- a/meta/lib/oeqa/runtime/df.py
+++ b/meta/lib/oeqa/runtime/df.py
@@ -2,8 +2,6 @@ import unittest
2from oeqa.oetest import oeRuntimeTest 2from oeqa.oetest import oeRuntimeTest
3from oeqa.utils.decorators import * 3from oeqa.utils.decorators import *
4 4
5def setUpModule():
6 skipModuleUnless(oeRuntimeTest.tc.target.run('which df')[0] == 0, "No df in image or no connection")
7 5
8class DfTest(oeRuntimeTest): 6class DfTest(oeRuntimeTest):
9 7
diff --git a/meta/lib/oeqa/runtime/dmesg.py b/meta/lib/oeqa/runtime/dmesg.py
index 48370fbb0c..a53d1f0bf3 100644
--- a/meta/lib/oeqa/runtime/dmesg.py
+++ b/meta/lib/oeqa/runtime/dmesg.py
@@ -2,8 +2,6 @@ import unittest
2from oeqa.oetest import oeRuntimeTest 2from oeqa.oetest import oeRuntimeTest
3from oeqa.utils.decorators import * 3from oeqa.utils.decorators import *
4 4
5def setUpModule():
6 skipModuleUnless(oeRuntimeTest.tc.target.run('which dmesg')[0] == 0, "No dmesg in image or no connection")
7 5
8class DmesgTest(oeRuntimeTest): 6class DmesgTest(oeRuntimeTest):
9 7
diff --git a/meta/lib/oeqa/runtime/vnc.py b/meta/lib/oeqa/runtime/vnc.py
index 9476184080..ce111793b8 100644
--- a/meta/lib/oeqa/runtime/vnc.py
+++ b/meta/lib/oeqa/runtime/vnc.py
@@ -3,7 +3,7 @@ from oeqa.utils.decorators import *
3import re 3import re
4 4
5def setUpModule(): 5def setUpModule():
6 skipModuleUnless(oeRuntimeTest.tc.target.run('which x11vnc')[0] == 0, "No x11vnc in image") 6 skipModuleUnless(oeRuntimeTest.hasPackage('x11vnc'), "No x11vnc package in image")
7 7
8class VNCTest(oeRuntimeTest): 8class VNCTest(oeRuntimeTest):
9 9