1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
build / android / pylib / output / noop_output_manager.py [blame]
# Copyright 2017 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from pylib.base import output_manager
# TODO(jbudorick): This class is currently mostly unused.
# Add a --bot-mode argument that all bots pass. If --bot-mode and
# --local-output args are both not passed to test runner then use this
# as the output manager impl.
# pylint: disable=no-self-use
class NoopOutputManager(output_manager.OutputManager):
#override
def _CreateArchivedFile(self, out_filename, out_subdir, datatype):
del out_filename, out_subdir, datatype
return NoopArchivedFile()
class NoopArchivedFile(output_manager.ArchivedFile):
def __init__(self):
super().__init__(None, None, None)
def Link(self):
"""NoopArchivedFiles are not retained."""
return ''
def _Link(self):
pass
def Archive(self):
"""NoopArchivedFiles are not retained."""
def _Archive(self):
pass