• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7# This script adds desired tests to ChromeOS Autotest server.
8
9pushd $(dirname "$0") > /dev/null
10# Add all site_tests
11./test_importer.py -t /usr/local/autotest/client/site_tests
12./test_importer.py -t /usr/local/autotest/server/site_tests
13
14# Add all profilers
15./test_importer.py -p /usr/local/autotest/client/profilers
16
17# Add selected tests
18./test_importer.py -w site_whitelist_tests
19popd > /dev/null
20