OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2011 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 |
| 5 AUTHOR = "Taylor Hutt <thutt@google.com>" |
| 6 TIME = "LONG" |
| 7 NAME = "Network VPN" |
| 8 TEST_CATEGORY = "Stress" |
| 9 TEST_CLASS = "network" |
| 10 TEST_TYPE = "Server" |
| 11 SYNC_COUNT = 1 |
| 12 DOC = """ |
| 13 |
| 14 You must have the 53d0a92e9b0b37daebc795cc1ea4684d1c0dffd8 from |
| 15 chromeos/master to have the necessary configuration changes to the |
| 16 openwrt repository. You must then build the 'rspro' variant and |
| 17 upgrade your router with the new firmware to be able to run this test. |
| 18 |
| 19 You must build the 'rspro' openwrt variant with these configuration |
| 20 changes, and update the rspro router to the newly built firmware to be |
| 21 able to run this test. |
| 22 |
| 23 This test starts & verfies a VPN connection from the Client (DUT) to |
| 24 the Server (rspro). |
| 25 |
| 26 """ |
| 27 |
| 28 from autotest_lib.server import site_wifitest |
| 29 |
| 30 |
| 31 def run_server_tests(machine): |
| 32 site_wifitest.run_test_dir("network_VPN", job, args, machine) |
| 33 |
| 34 parallel_simple(run_server_tests, machines) |
OLD | NEW |