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

Unified Diff: build_autotest.sh

Issue 5278013: Remove unused autotest scripts. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Created 10 years, 1 month 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 | « autotest_lib.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build_autotest.sh
diff --git a/build_autotest.sh b/build_autotest.sh
deleted file mode 100755
index d974e4d31e1267de844f48d98cff8209336c4e10..0000000000000000000000000000000000000000
--- a/build_autotest.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-
-# Copyright (c) 2009 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 makes autotest client tests inside a chroot environment. The idea
-# is to compile any platform-dependent autotest client tests in the build
-# environment, since client systems under test lack the proper toolchain.
-#
-# The user can later run autotest against an ssh enabled test client system, or
-# install the compiled client tests directly onto the rootfs image.
-
-. "$(dirname "$0")/common.sh"
-
-get_default_board
-
-DEFINE_string board "$DEFAULT_BOARD" \
- "The board for which you are building autotest"
-
-FLAGS "$@" || exit 1
-
-if [[ -n "${CROS_WORKON_SRCROOT}" ]]; then
- if [[ -z "${FLAGS_board}" ]]; then
- setup_board_warning
- exit 1
- fi
- emerge-${FLAGS_board} autotest-all
-else
- ./autotest --noprompt --build=all --board="${FLAGS_board}" $@
-fi
-
« no previous file with comments | « autotest_lib.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698