diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2017-05-10 23:33:45 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-10 23:42:27 +0200 |
commit | bab4a2fd37b1ce4bdeb25f7bf98adf07eea8c504 (patch) | |
tree | 68476c6966d6244e92a88b693770efda4fbcb991 | |
parent | 08151c6aec559b68c0991dadf0147673cbae851f (diff) | |
download | buildroot-bab4a2fd37b1ce4bdeb25f7bf98adf07eea8c504.tar.gz buildroot-bab4a2fd37b1ce4bdeb25f7bf98adf07eea8c504.zip |
support/testing: remove unused variable
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | support/testing/infra/basetest.py | 1 |
1 files changed, 0 insertions, 1 deletions
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) |