1# Copyright 2016 The Chromium OS 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
5AUTHOR = 'sadmac'
6NAME = 'brillo_ADBFileTransfer.1000iters'
7TIME = 'LENGTHY'
8TEST_CATEGORY = 'Functional'
9TEST_TYPE = 'Server'
10ATTRIBUTES = 'suite:brillo-pts'
11
12DOC = """
13Tests whether ADB can handle large/long file transfers reliably
14in quick succession.
15"""
16
17def run(machine):
18    job.run_test('brillo_ADBFileTransfer',
19                 tag=NAME.split('.', 1)[1],
20                 host=hosts.create_host(machine),
21                 iterations=1000)
22
23parallel_simple(run, machines)
24