From: Luca Ceresoli Date: Wed, 10 May 2017 21:33:45 +0000 (+0200) Subject: support/testing: remove unused variable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bab4a2fd37b1ce4bdeb25f7bf98adf07eea8c504;p=buildroot.git support/testing: remove unused variable Signed-off-by: Luca Ceresoli Signed-off-by: Thomas Petazzoni --- diff --git a/support/testing/infra/basetest.py b/support/testing/infra/basetest.py index cb5d2100f4..557baa215c 100644 --- a/support/testing/infra/basetest.py +++ b/support/testing/infra/basetest.py @@ -41,7 +41,6 @@ class BRTest(unittest.TestCase): def setUp(self): self.testname = self.__class__.__name__ self.builddir = os.path.join(self.__class__.outputdir, self.testname) - self.runlog = self.builddir + "-run.log" self.emulator = None self.show_msg("Starting") self.b = Builder(self.__class__.config, self.builddir, self.logtofile)