Follow-on fix for bug 457825. Use sheet principal for agent and user sheets. r=dbaron...
[wine-gecko.git] / js / tests / detect-universe.sh
blobb11c25c602efe001d3de8ca42b567cdbf209f467
1 #!/bin/bash -e
2 # -*- Mode: Shell-script; tab-width: 4; indent-tabs-mode: nil; -*-
4 # ***** BEGIN LICENSE BLOCK *****
5 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
7 # The contents of this file are subject to the Mozilla Public License Version
8 # 1.1 (the "License"); you may not use this file except in compliance with
9 # the License. You may obtain a copy of the License at
10 # http://www.mozilla.org/MPL/
12 # Software distributed under the License is distributed on an "AS IS" basis,
13 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14 # for the specific language governing rights and limitations under the
15 # License.
17 # The Original Code is Mozilla JavaScript Testing Utilities
19 # The Initial Developer of the Original Code is
20 # Mozilla Corporation.
21 # Portions created by the Initial Developer are Copyright (C) 2008
22 # the Initial Developer. All Rights Reserved.
24 # Contributor(s): Bob Clary <bclary@bclary.com>
26 # Alternatively, the contents of this file may be used under the terms of
27 # either the GNU General Public License Version 2 or later (the "GPL"), or
28 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 # in which case the provisions of the GPL or the LGPL are applicable instead
30 # of those above. If you wish to allow use of your version of this file only
31 # under the terms of either the GPL or the LGPL, and not to allow others to
32 # use your version of this file under the terms of the MPL, indicate your
33 # decision by deleting the provisions above and replace them with the notice
34 # and other provisions required by the GPL or the LGPL. If you do not delete
35 # the provisions above, a recipient may use your version of this file under
36 # the terms of any one of the MPL, the GPL or the LGPL.
38 # ***** END LICENSE BLOCK *****
40 if [[ -z "$TEST_DIR" ]]; then
41 cat <<EOF
42 `basename $0`: error
44 TEST_DIR, the location of the Sisyphus framework,
45 is required to be set prior to calling this script.
46 EOF
47 exit 2
50 if [[ ! -e $TEST_DIR/bin/library.sh ]]; then
51 echo "TEST_DIR=$TEST_DIR"
52 echo ""
53 echo "This script requires the Sisyphus testing framework. Please "
54 echo "cvs check out the Sisyphys framework from mozilla/testing/sisyphus"
55 echo "and set the environment variable TEST_DIR to the directory where it"
56 echo "located."
57 echo ""
59 exit 2
63 # options processing
65 usage()
67 cat <<EOF
68 usage: detect-universe.sh -p products -b branches -R repositories -T buildtypes
70 Outputs to stdout the universe data for this machine.
72 variable description
73 =============== ============================================================
74 -p products required. one or more of firefox, thunderbird, fennec, js
75 -b branches required. one or more of 1.8.0, 1.8.1, 1.9.0, 1.9.1
76 -R repositories required. one or more of CVS, mozilla-central, ...
77 -T buildtype required. one or more of opt debug
79 if an argument contains more than one value, it must be quoted.
80 EOF
81 exit 2
84 while getopts "p:b:R:T:" optname
85 do
86 case $optname in
87 p)
88 products=$OPTARG;;
89 b)
90 branches=$OPTARG;;
92 repos=$OPTARG;;
93 T)
94 buildtypes=$OPTARG;;
95 esac
96 done
98 if [[ -z "$products" || -z "$branches" || -z "$buildtypes" ]]; then
99 usage
102 source $TEST_DIR/bin/library.sh
104 # convert the numeric speed rating to a prose value
105 if [[ $TEST_CPUSPEED -lt 4 ]]; then
106 TEST_CPUSPEED=slow
107 elif [[ $TEST_CPUSPEED -lt 9 ]]; then
108 TEST_CPUSPEED=medium
109 else
110 TEST_CPUSPEED=fast
113 (for product in $products; do
114 for branch in $branches; do
115 for repo in $repos; do
117 if [[ "$branch" == "1.9.1" && $repo == "CVS" ]]; then
118 continue;
121 if [[ "$branch" != "1.9.1" && $repo != "CVS" ]]; then
122 continue
125 for buildtype in $buildtypes; do
126 if [[ $product == "js" ]]; then
127 testtype=shell
128 else
129 testtype=browser
131 echo "TEST_OS=$OSID, TEST_KERNEL=$TEST_KERNEL, TEST_PROCESSORTYPE=$TEST_PROCESSORTYPE, TEST_MEMORY=$TEST_MEMORY, TEST_CPUSPEED=$TEST_CPUSPEED, TEST_TIMEZONE=$TEST_TIMEZONE, TEST_BRANCH=$branch, TEST_REPO=$repo, TEST_BUILDTYPE=$buildtype, TEST_TYPE=$testtype"
132 done
133 done
134 done
135 done) | sort -u