From 1c9ba4b698bab916d42b58255692a7bf3d773bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= Date: Tue, 29 Nov 2016 18:12:49 -0600 Subject: classes/testsdk: Remove the need of TEST_LOG_DIR variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The TEST_LOG_DIR was used for store sdk_target_log this log contains the output of the run of build commands now that information could be found also on log.do_testsdk under WORKDIR. The log will continue to store into SDK_DIR instead of TEST_LOG_DIR. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/sdk/cases/buildiptables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/lib/oeqa/sdk/cases/buildiptables.py') diff --git a/meta/lib/oeqa/sdk/cases/buildiptables.py b/meta/lib/oeqa/sdk/cases/buildiptables.py index a50fb5dcf5..532b5de8e6 100644 --- a/meta/lib/oeqa/sdk/cases/buildiptables.py +++ b/meta/lib/oeqa/sdk/cases/buildiptables.py @@ -2,7 +2,7 @@ from oeqa.sdk.case import OESDKTestCase from oeqa.sdk.utils.sdkbuildproject import SDKBuildProject class BuildIptablesTest(OESDKTestCase): - td_vars = ['TEST_LOG_DIR', 'DATETIME'] + td_vars = ['DATETIME'] @classmethod def setUpClass(self): @@ -10,7 +10,7 @@ class BuildIptablesTest(OESDKTestCase): self.project = SDKBuildProject(self.tc.sdk_dir + "/iptables/", self.tc.sdk_env, "http://downloads.yoctoproject.org/mirror/sources/iptables-1.4.13.tar.bz2", - self.td['TEST_LOG_DIR'], self.td['DATETIME'], dl_dir=dl_dir) + self.tc.sdk_dir, self.td['DATETIME'], dl_dir=dl_dir) self.project.download_archive() def test_iptables(self): -- cgit v1.2.3