Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(520)

Unified Diff: utils/site_test_importer.sh

Issue 1617004: Add chromeos site-specific test importer wrappers. (Closed)
Patch Set: Tidy up a bit Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | utils/site_test_importer_attributes.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | utils/site_test_importer_attributes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698