aboutsummaryrefslogtreecommitdiffstats
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:26:15 +0100
commitc02d6b4c8d747a637c3c328e6dc25ed339dcbe04 (patch)
treec2e023be14e7f10c7a2e06cbbb9fe628891fdc87 /meta/lib/oeqa/utils/decorators.py
parent81d7adf6059f0b501b1db6eb28dc9543f03c09ed (diff)
downloadopenembedded-core-contrib-c02d6b4c8d747a637c3c328e6dc25ed339dcbe04.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. (From OE-Core rev: 5381e6cf6bf7143074800b2949bfa5331fdb6d47) Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@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/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