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

Unified Diff: mod_for_factory_scripts/500populateQualDbs

Issue 5138001: Remove obsolete files. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/installer.git
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 | « mod_for_factory_scripts/400configAutotest ('k') | mod_for_factory_scripts/510populateGbbFiles » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mod_for_factory_scripts/500populateQualDbs
diff --git a/mod_for_factory_scripts/500populateQualDbs b/mod_for_factory_scripts/500populateQualDbs
deleted file mode 100755
index 646f36c6d278566bb1972bc1ceb4042fc46d1bea..0000000000000000000000000000000000000000
--- a/mod_for_factory_scripts/500populateQualDbs
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/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.
-
-TEST_DIR="${ROOT_FS_DIR}/usr/local/autotest/site_tests/hardware_Components"
-
-pushd ${TEST_DIR} 1> /dev/null
-
-if [ -z ${QUALDB} ]; then
- # If QUALDB not specified, check the existence of the qualified components
- # belonging to the board.
- QUALDB="qualified_components_${BOARD}*"
- FIRST_QUALDB=$(ls $QUALDB 2> /dev/null | head -1)
- if [ ! -z ${FIRST_QUALDB} ]; then
- # Remove qualified components belonging to other boards
- ls qualified_components* 2> /dev/null | grep -v \
- qualified_components_${BOARD} | xargs rm -f
- else
- echo "No qualified component file found at: ${QUALDB}"
- fi
-else
- rm -f qualified_components*
- echo "Copying ${QUALDB} to the image."
- cp -f ${QUALDB} ${TEST_DIR}/
-fi
-
-popd 1> /dev/null
« no previous file with comments | « mod_for_factory_scripts/400configAutotest ('k') | mod_for_factory_scripts/510populateGbbFiles » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698