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

Side by Side Diff: build/linux/sysroot_scripts/sysroot-creator-test.sh

Issue 1141003002: Move linux sysroots from chrome/installer/linux to build/linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 # Rudimentry test suite for sysroot-creator. 6 # Rudimentry test suite for sysroot-creator.
7 7
8 SCRIPT_DIR=$(dirname $0) 8 SCRIPT_DIR=$(dirname $0)
9 9
10 set -o errexit 10 set -o errexit
11 11
12 TestUpdateAllLists() { 12 TestUpdateAllLists() {
13 echo "[ RUN ] TestUpdateAllLists" 13 echo "[ RUN ] TestUpdateAllLists"
14 "$SCRIPT_DIR/sysroot-creator-trusty.sh" UpdatePackageListsAmd64 14 "$SCRIPT_DIR/sysroot-creator-trusty.sh" UpdatePackageListsAmd64
15 "$SCRIPT_DIR/sysroot-creator-trusty.sh" UpdatePackageListsI386 15 "$SCRIPT_DIR/sysroot-creator-trusty.sh" UpdatePackageListsI386
16 "$SCRIPT_DIR/sysroot-creator-trusty.sh" UpdatePackageListsARM 16 "$SCRIPT_DIR/sysroot-creator-trusty.sh" UpdatePackageListsARM
17 "$SCRIPT_DIR/sysroot-creator-wheezy.sh" UpdatePackageListsAmd64 17 "$SCRIPT_DIR/sysroot-creator-wheezy.sh" UpdatePackageListsAmd64
18 "$SCRIPT_DIR/sysroot-creator-wheezy.sh" UpdatePackageListsI386 18 "$SCRIPT_DIR/sysroot-creator-wheezy.sh" UpdatePackageListsI386
19 "$SCRIPT_DIR/sysroot-creator-wheezy.sh" UpdatePackageListsARM 19 "$SCRIPT_DIR/sysroot-creator-wheezy.sh" UpdatePackageListsARM
20 echo "[ OK ]" 20 echo "[ OK ]"
21 } 21 }
22 22
23 TestUpdateAllLists 23 TestUpdateAllLists
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698