| Index: utils/site_test_importer.sh
|
| diff --git a/utils/site_test_importer.sh b/utils/site_test_importer.sh
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..b7260efd7f67622ce3388826c28db703a5caad59
|
| --- /dev/null
|
| +++ b/utils/site_test_importer.sh
|
| @@ -0,0 +1,22 @@
|
| +#!/bin/bash
|
| +
|
| +# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +# This script adds desired tests to ChromeOS Autotest server.
|
| +
|
| +pushd $(dirname "$0") > /dev/null
|
| +# Clean all tests
|
| +./test_importer.py -C
|
| +
|
| +# Add all site_tests
|
| +./test_importer.py -t /usr/local/autotest/client/site_tests
|
| +./test_importer.py -t /usr/local/autotest/server/site_tests
|
| +
|
| +# Add all profilers
|
| +./test_importer.py -p /usr/local/autotest/client/profilers
|
| +
|
| +# Add selected tests
|
| +./test_importer.py -w site_whitelist_tests
|
| +popd > /dev/null
|
|
|