diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/testimage.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 7eb4038d21..6fed408613 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass | |||
@@ -129,11 +129,15 @@ def testimage_main(d): | |||
129 | from oeqa.oetest import ImageTestContext | 129 | from oeqa.oetest import ImageTestContext |
130 | from oeqa.targetcontrol import get_target_controller | 130 | from oeqa.targetcontrol import get_target_controller |
131 | from oeqa.utils.dump import get_host_dumper | 131 | from oeqa.utils.dump import get_host_dumper |
132 | from bb.utils import export_proxies | ||
132 | 133 | ||
133 | pn = d.getVar("PN") | 134 | pn = d.getVar("PN") |
134 | bb.utils.mkdirhier(d.getVar("TEST_LOG_DIR")) | 135 | bb.utils.mkdirhier(d.getVar("TEST_LOG_DIR")) |
135 | test_create_extract_dirs(d) | 136 | test_create_extract_dirs(d) |
136 | 137 | ||
138 | # runtime use network for download projects for build | ||
139 | export_proxies(d) | ||
140 | |||
137 | # we need the host dumper in test context | 141 | # we need the host dumper in test context |
138 | host_dumper = get_host_dumper(d) | 142 | host_dumper = get_host_dumper(d) |
139 | 143 | ||