diff options
author | Corneliu Stoicescu <corneliux.stoicescu@intel.com> | 2014-07-30 19:47:39 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-02 09:26:15 +0100 |
commit | c02d6b4c8d747a637c3c328e6dc25ed339dcbe04 (patch) | |
tree | c2e023be14e7f10c7a2e06cbbb9fe628891fdc87 /meta/lib/oeqa/utils | |
parent | 81d7adf6059f0b501b1db6eb28dc9543f03c09ed (diff) | |
download | poky-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')
-rw-r--r-- | meta/lib/oeqa/utils/decorators.py | 1 |
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 @@ | |||
6 | # Most useful is skipUnlessPassed which can be used for | 6 | # Most useful is skipUnlessPassed which can be used for |
7 | # creating dependecies between two test methods. | 7 | # creating dependecies between two test methods. |
8 | 8 | ||
9 | import os | ||
9 | import logging | 10 | import logging |
10 | import sys | 11 | import sys |
11 | import unittest | 12 | import unittest |