forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 775281 - Add files necessary to run B2G xpcshell tests from test.…
…sh, r=jgriffin, DONTBUILD because NPOTB
- Loading branch information
Showing
3 changed files
with
107 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#!/bin/bash | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
# You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
PYTHON=$1 | ||
|
||
if [ -z "${PYTHON}" ] | ||
then | ||
echo "No python found" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "${MARIONETTE_HOME}" ] | ||
then | ||
echo "No MARIONETTE_HOME found" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "${XPCSHELLTEST_HOME}" ] | ||
then | ||
echo "No XPCSHELLTEST_HOME found" | ||
exit 1 | ||
fi | ||
|
||
echo "Detected Marionette home in $MARIONETTE_HOME" | ||
|
||
# If a GECKO_OBJDIR environemnt variable exists, we will create the Python | ||
# virtual envirnoment there. Otherwise we create it in the PWD. | ||
VENV_DIR="marionette_venv" | ||
if [ -z $GECKO_OBJDIR ] | ||
then | ||
VENV_DIR="$MARIONETTE_HOME/$VENV_DIR" | ||
else | ||
VENV_DIR="$GECKO_OBJDIR/$VENV_DIR" | ||
fi | ||
|
||
# Check if environment exists, if not, create a virtualenv: | ||
if [ -d $VENV_DIR ] | ||
then | ||
echo "Using virtual environment in $VENV_DIR" | ||
cd $VENV_DIR | ||
. bin/activate | ||
else | ||
echo "Creating a virtual environment in $VENV_DIR" | ||
curl https://raw.github.com/pypa/virtualenv/develop/virtualenv.py | ${PYTHON} - $VENV_DIR | ||
cd $VENV_DIR | ||
. bin/activate | ||
# set up mozbase | ||
git clone git://github.com/mozilla/mozbase.git | ||
cd mozbase | ||
python setup_development.py | ||
fi | ||
|
||
# update the marionette_client | ||
cd $MARIONETTE_HOME | ||
python setup.py develop | ||
|
||
cd $XPCSHELLTEST_HOME | ||
|
||
# pop off the python parameter | ||
shift | ||
python runtestsb2g.py $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters