Home
last modified time | relevance | path

Searched refs:logtofile (Results 1 – 8 of 8) sorted by relevance

/OK3568_Linux_fs/buildroot/support/testing/infra/
H A D__init__.py13 def log_file_path(builddir, stage, logtofile=True): argument
15 return "{}-{}.log".format(builddir, stage) if logtofile else None
18 def open_log_file(builddir, stage, logtofile=True): argument
24 return open(log_file_path(builddir, stage, logtofile), 'a+') if logtofile else sys.stdout
H A Dbasetest.py36 logtofile = True variable in BRConfigTest
54 self.b = Builder(self.config, self.builddir, self.logtofile)
81 self.logtofile, self.timeout_multiplier)
H A Dbuilder.py9 def __init__(self, config, builddir, logtofile): argument
13 self.logfile = infra.open_log_file(builddir, "build", logtofile)
H A Demulator.py8 def __init__(self, builddir, downloaddir, logtofile, timeout_multiplier): argument
11 self.logfile = infra.open_log_file(builddir, "run", logtofile)
/OK3568_Linux_fs/buildroot/support/testing/tests/download/
H A Dgitremote.py13 def __init__(self, builddir, serveddir, logtofile): argument
27 self.logfile = infra.open_log_file(builddir, "gitremote", logtofile)
H A Dtest_git.py19 self.gitremote = GitRemote(self.builddir, self.gitremotedir, self.logtofile)
/OK3568_Linux_fs/buildroot/support/testing/tests/core/
H A Dtest_bad_arch.py13 infra.basetest.BRConfigTest.logtofile)
/OK3568_Linux_fs/buildroot/support/testing/
H A Drun-tests42 BRConfigTest.logtofile = False