Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / detect-universe.sh
1 #!/bin/bash -e
2 # -*- Mode: Shell-script; tab-width: 4; indent-tabs-mode: nil; -*-
3
4 # ***** BEGIN LICENSE BLOCK *****
5 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 #
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/
11 #
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.
16 #
17 # The Original Code is Mozilla JavaScript Testing Utilities
18 #
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.
23 #
24 # Contributor(s): Bob Clary <bclary@bclary.com>
25 #
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.
37 #
38 # ***** END LICENSE BLOCK *****
39
40 if [[ -z "$TEST_DIR" ]]; then
41     cat <<EOF
42 `basename $0`: error
43
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
48 fi
49
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 ""
58
59     exit 2
60 fi
61
62 #
63 # options processing
64 #
65 usage()
66 {
67     cat <<EOF
68 usage: detect-universe.sh -p products -b branches -R repositories -T buildtypes
69
70 Outputs to stdout the universe data for this machine.
71
72 variable            description
73 ===============     ============================================================
74 -p products         required. one or more of firefox, thunderbird, fennec, js
75 -b branches         required. one or more of supported branches. set library.sh
76 -R repositories     required. one or more of CVS, mozilla-central, ...
77 -T buildtype        required. one or more of opt debug
78
79 if an argument contains more than one value, it must be quoted.
80 EOF
81     exit 2
82 }
83
84 while getopts "p:b:R:T:" optname
85 do
86     case $optname in
87         p)
88             products=$OPTARG;;
89         b)
90             branches=$OPTARG;;
91         R)
92             repos=$OPTARG;;
93         T)
94             buildtypes=$OPTARG;;
95     esac
96 done
97
98 if [[ -z "$products" || -z "$branches" || -z "$buildtypes" ]]; then
99     usage
100 fi
101
102 source $TEST_DIR/bin/library.sh
103
104 (for product in $products; do
105     for branch in $branches; do
106         for repo in $repos; do
107
108             if [[ ("$branch" != "1.8.0" && "$branch" != "1.8.1" && "$branch" != "1.9.0") && $repo == "CVS" ]]; then
109                 continue;
110             fi
111
112             if [[ ("$branch" == "1.8.0" || "$branch" == "1.8.1" || "$branch" == "1.9.0") && $repo != "CVS" ]]; then
113                 continue
114             fi
115
116             for buildtype in $buildtypes; do
117                 if [[ $product == "js" ]]; then
118                     testtype=shell
119                 else
120                     testtype=browser
121                 fi
122                 echo "TEST_OS=$OSID, TEST_KERNEL=$TEST_KERNEL, TEST_PROCESSORTYPE=$TEST_PROCESSORTYPE, TEST_MEMORY=$TEST_MEMORY, TEST_TIMEZONE=$TEST_TIMEZONE, TEST_BRANCH=$branch, TEST_REPO=$repo, TEST_BUILDTYPE=$buildtype, TEST_TYPE=$testtype"
123             done
124         done
125     done
126 done) | sort -u