summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/decorators.py
diff options
context:
space:
mode:
authorCorneliu Stoicescu <corneliux.stoicescu@intel.com>2014-07-30 19:47:39 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-02 09:25:33 +0100
commit5381e6cf6bf7143074800b2949bfa5331fdb6d47 (patch)
treea3b5cf579fcf09084208a09a66552879066b1f9c /meta/lib/oeqa/utils/decorators.py
parentc39a1172afd783cedf4cb11f00e8f16d7a7ec22c (diff)
downloadopenembedded-core-contrib-5381e6cf6bf7143074800b2949bfa5331fdb6d47.tar.gz
oeqa/utils/decorators.py: add import os
An 'import os' was omitted here while testing the previous decorators using runtime tests that import the os module before this one. Unfortunately oe-selftest fails because of this missing import. Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/lib/oeqa/utils/decorators.py')
-rw-r--r--meta/lib/oeqa/utils/decorators.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/decorators.py b/meta/lib/oeqa/utils/decorators.py
index 439e80a42b..a9e67ed863 100644
--- a/meta/lib/oeqa/utils/decorators.py
+++ b/meta/lib/oeqa/utils/decorators.py
@@ -6,6 +6,7 @@
# Most useful is skipUnlessPassed which can be used for
# creating dependecies between two test methods.
+import os
import logging
import sys
import unittest