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 = 'dkrahn'
6NAME = 'brillo_HWRandom'
7# It may take a long time to collect the random data on some boards.
8TIME = 'LONG'
9TEST_CATEGORY = 'Functional'
10TEST_TYPE = 'Server'
11
12DOC = """
13Tests that /dev/hw_random is present and passes basic statistical tests. This
14test requires that the 'dieharder' package is installed on the server.
15"""
16
17def run(machine):
18    job.run_test('brillo_HWRandom', host=hosts.create_host(machine))
19
20
21parallel_simple(run, machines)
22