Last active
December 28, 2015 18:39
-
-
Save sergi/7544434 to your computer and use it in GitHub Desktop.
Shell helper function to launch Firefox OS test server
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
launch_tests() { | |
cd $GAIADIR | |
if [ ! -d profile/extensions/httpd ] ; then | |
DEBUG=1 make | |
fi | |
$NIGHTLY/firefox --no-remote -profile $GAIADIR/profile-debug/ http://test-agent.gaiamobile.org:8080/ & | |
make test-agent-server | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment