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.
4import logging
5
6from autotest_lib.client.common_lib import utils
7
8
9AUTHOR = 'jorgelo'
10NAME = 'brillo_Minijail'
11TIME = 'SHORT'
12TEST_CATEGORY = 'Functional'
13TEST_TYPE = 'Server'
14ATTRIBUTES = 'suite:brillo-bvt,suite:brillo-smoke'
15SUITE = 'brillo-bvt'
16
17DOC = """
18Tests basic Minijail sandboxing functionality.
19"""
20
21def run(machine):
22    job.run_test('brillo_Minijail', host=hosts.create_host(machine))
23
24
25parallel_simple(run, machines)
26