diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2016-04-11 06:55:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-12 22:50:21 +0100 |
commit | d27ca36e2a3d3ba60870aa73f17a6e22737b0c13 (patch) | |
tree | b798fc113ef2450e8256cd1b326244bd9c2c2a05 /meta/lib/oeqa/utils | |
parent | 85dbd7bf9e4b6eccdbb8102e462dd681240c1c57 (diff) | |
download | poky-d27ca36e2a3d3ba60870aa73f17a6e22737b0c13.tar.gz |
oeqa/runexported.py: Fix exported test
With the changes introduced to test the eSDK
the runexported test failed during the execution.
This change fix runexported test in the least invasive
way, because of the release cycle.
(From OE-Core rev: da0abb9679cb1fd639859a2fdbd82101d0a81259)
Signed-off-by: Mariano Lopez <mariano.lopez@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/commands.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index 32e001c6b5..48f6441290 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py | |||
@@ -18,7 +18,11 @@ from oeqa.utils import CommandError | |||
18 | from oeqa.utils import ftools | 18 | from oeqa.utils import ftools |
19 | import re | 19 | import re |
20 | import contextlib | 20 | import contextlib |
21 | import bb | 21 | # Export test doesn't require bb |
22 | try: | ||
23 | import bb | ||
24 | except ImportError: | ||
25 | pass | ||
22 | 26 | ||
23 | class Command(object): | 27 | class Command(object): |
24 | def __init__(self, command, bg=False, timeout=None, data=None, **options): | 28 | def __init__(self, command, bg=False, timeout=None, data=None, **options): |