Searched refs:logtofile (Results 1 – 8 of 8) sorted by relevance
| /OK3568_Linux_fs/buildroot/support/testing/infra/ |
| H A D | __init__.py | 13 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 D | basetest.py | 36 logtofile = True variable in BRConfigTest 54 self.b = Builder(self.config, self.builddir, self.logtofile) 81 self.logtofile, self.timeout_multiplier)
|
| H A D | builder.py | 9 def __init__(self, config, builddir, logtofile): argument 13 self.logfile = infra.open_log_file(builddir, "build", logtofile)
|
| H A D | emulator.py | 8 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 D | gitremote.py | 13 def __init__(self, builddir, serveddir, logtofile): argument 27 self.logfile = infra.open_log_file(builddir, "gitremote", logtofile)
|
| H A D | test_git.py | 19 self.gitremote = GitRemote(self.builddir, self.gitremotedir, self.logtofile)
|
| /OK3568_Linux_fs/buildroot/support/testing/tests/core/ |
| H A D | test_bad_arch.py | 13 infra.basetest.BRConfigTest.logtofile)
|
| /OK3568_Linux_fs/buildroot/support/testing/ |
| H A D | run-tests | 42 BRConfigTest.logtofile = False
|