60c17bf983
Bug: v8:6917 Change-Id: Id73e4892a0d1b3b9c5bdd70ccc136e7bd2edf360 Cq-Include-Trybots: luci.v8.try:v8_linux64_fyi_rel_ng Reviewed-on: https://chromium-review.googlesource.com/863603 Commit-Queue: Michał Majewski <majeski@google.com> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#50565}
28 lines
708 B
Python
28 lines
708 B
Python
# Copyright 2018 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
from . import base
|
|
|
|
|
|
class LoadProc(base.TestProc):
|
|
"""First processor in the chain that passes all tests to the next processor.
|
|
"""
|
|
|
|
def load_tests(self, tests):
|
|
loaded = set()
|
|
for test in tests:
|
|
if test.procid in loaded:
|
|
print 'Warning: %s already obtained' % test.procid
|
|
continue
|
|
|
|
loaded.add(test.procid)
|
|
self._send_test(test)
|
|
|
|
def next_test(self, test):
|
|
assert False, 'Nothing can be connected to the LoadProc'
|
|
|
|
def result_for(self, test, result):
|
|
# Ignore all results.
|
|
pass
|