• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2015 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
5AUTHOR = "krisr"
6NAME = "network_FirewallHolePunchServer"
7PURPOSE = "Verify Chrome apps can open holes in the firewall"
8CRITERIA = """
9Test will pass if Chrome apps can open holes in the firewall, that those
10holes are closed when the app is reloaded or closed"""
11ATTRIBUTES = "suite:network_nightly"
12TIME = "SHORT"
13TEST_CATEGORY = "Functional"
14TEST_CLASS = "network"
15TEST_TYPE = "server"
16
17DOC = """
18This test checks network firewall manipulations.  See CRITERIA for more
19details
20"""
21
22from autotest_lib.server import utils
23
24def run(machine):
25    host = hosts.create_host(machine)
26    job.run_test('network_FirewallHolePunchServer', host=host)
27
28parallel_simple(run, machines)
29
30