• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2017 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5DEPS = [
6  'isolate',
7  'recipe_engine/properties',
8  'recipe_engine/step',
9]
10
11
12def RunSteps(api):
13  api.step('isolated_tests', [])
14  api.step.active_result.presentation.logs['details'] = [
15    'isolated_tests: %r' % api.isolate.isolated_tests
16  ]
17
18
19def GenTests(api):
20  yield (
21      api.test('basic') +
22      api.properties(
23          swarm_hashes={
24            'base_unittests': 'ffffffffffffffffffffffffffffffffffffffff',
25          }
26      )
27  )
28