diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-08-28 12:56:45 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-28 23:35:56 +0100 |
commit | 188acd0a75e188fd7c0d2979acaf13fd18b12106 (patch) | |
tree | 90fff07d8f456fe88a8e3474a86d67a1c3da422c /meta/lib/oeqa/runtime/date.py | |
parent | 3f8d61517d31c3351a45f95adbd81e1c0147b98e (diff) | |
download | openembedded-core-188acd0a75e188fd7c0d2979acaf13fd18b12106.tar.gz openembedded-core-188acd0a75e188fd7c0d2979acaf13fd18b12106.tar.bz2 openembedded-core-188acd0a75e188fd7c0d2979acaf13fd18b12106.zip |
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).
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/lib/oeqa/runtime/date.py')
-rw-r--r-- | meta/lib/oeqa/runtime/date.py | 3 |
1 files changed, 0 insertions, 3 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 from oeqa.utils.decorators import * import re -def setUpModule(): - skipModuleUnless(oeRuntimeTest.tc.target.run('which date')[0] == 0, "No date in image or no connection") - class DateTest(oeRuntimeTest): def setUp(self): |