blob: 26fe666722237b2c3440e231a9696bb4b7a2fc89 (
plain)
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
|
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Recipe for uploading nanobench results.
DEPS = [
'recipe_engine/properties',
'upload_nano_results',
]
def RunSteps(api):
api.upload_nano_results.run()
def GenTests(api):
yield (
api.test('upload') +
api.properties(buildername='Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
revision='abc123',
path_config='kitchen')
)
|