]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/testsdk: Add call to export_proxies on testsdkext.
authorAníbal Limón <anibal.limon@linux.intel.com>
Thu, 28 Jan 2016 22:48:27 +0000 (16:48 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 10 Feb 2016 15:51:03 +0000 (15:51 +0000)
Extensible SDK needs to use network and some networks requires
proxies then export it.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/testsdk.bbclass

index 8fe6d0f4044b123c539f141c0854d3983396e98f..104c7a15f465108fa36a05042f0f7fe05b393451 100644 (file)
@@ -110,6 +110,9 @@ def testsdkext_main(d):
     import time
     import subprocess
     from oeqa.oetest import loadTests, runTests, get_test_suites, get_tests_list
+    from bb.utils import export_proxies
+
+    export_proxies(d)
 
     pn = d.getVar("PN", True)
     bb.utils.mkdirhier(d.getVar("TEST_LOG_SDKEXT_DIR", True))