diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2016-01-28 16:48:27 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:22 +0000 |
commit | abd81585fad176efea16c908a51d99aa9897b907 (patch) | |
tree | 18f7dcda23e82cc3711754f126c2d1380c556dd6 /meta | |
parent | 42f2ac42d22396768d13db15f0042b97fad8e55a (diff) | |
download | poky-abd81585fad176efea16c908a51d99aa9897b907.tar.gz |
classes/testsdk: Add call to export_proxies on testsdkext.
Extensible SDK needs to use network and some networks requires
proxies then export it.
(From OE-Core rev: 1c79fce34a02fee696bccb085a09957d71d87d56)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/testsdk.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 8fe6d0f404..104c7a15f4 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass | |||
@@ -110,6 +110,9 @@ def testsdkext_main(d): | |||
110 | import time | 110 | import time |
111 | import subprocess | 111 | import subprocess |
112 | from oeqa.oetest import loadTests, runTests, get_test_suites, get_tests_list | 112 | from oeqa.oetest import loadTests, runTests, get_test_suites, get_tests_list |
113 | from bb.utils import export_proxies | ||
114 | |||
115 | export_proxies(d) | ||
113 | 116 | ||
114 | pn = d.getVar("PN", True) | 117 | pn = d.getVar("PN", True) |
115 | bb.utils.mkdirhier(d.getVar("TEST_LOG_SDKEXT_DIR", True)) | 118 | bb.utils.mkdirhier(d.getVar("TEST_LOG_SDKEXT_DIR", True)) |