loader.py 717 Bytes
Newer Older
1 2 3 4 5 6 7 8
# 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):
9 10 11
  """First processor in the chain that passes all tests to the next processor.
  """

12 13 14 15 16 17 18 19 20 21
  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)

22 23 24
  def next_test(self, test):
    assert False, 'Nothing can be connected to the LoadProc'

25
  def result_for(self, test, result, is_last):
26
    # Ignore all results.
27
    pass