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
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
44 TEST_DIR, the location of the Sisyphus framework,
45 is required to be set prior to calling this script.
50 if [[ ! -e $TEST_DIR/bin
/library.sh
]]; then
51 echo "TEST_DIR=$TEST_DIR"
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"
68 usage: detect-universe.sh -p products -b branches -R repositories -T buildtypes
70 Outputs to stdout the universe data for this machine.
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.
84 while getopts "p:b:R:T:" optname
98 if [[ -z "$products" ||
-z "$branches" ||
-z "$buildtypes" ]]; then
102 source $TEST_DIR/bin
/library.sh
104 # convert the numeric speed rating to a prose value
105 if [[ $TEST_CPUSPEED -lt 4 ]]; then
107 elif [[ $TEST_CPUSPEED -lt 9 ]]; then
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
121 if [[ "$branch" != "1.9.1" && $repo != "CVS" ]]; then
125 for buildtype
in $buildtypes; do
126 if [[ $product == "js" ]]; then
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"