summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2012-08-26 11:16:06 -0700
committerDan Nicholson <dbn.lists@gmail.com>2012-10-30 22:54:59 -0700
commit57c8d700d5a038cfeac89013c999a95aac5ff663 (patch)
treeb08c4ddef9bc61fa7eaf8df9f1712214956156e0
parent08996667ba52e36cd2b882d0ae2c1e44313c1386 (diff)
test: Start separate browser instance when profile specified
Mozilla browsers allow starting a totally separate instance when a profile is specified and -no-remote is passed on the command line. This allows much easier testing without killing any currently running browsers.
-rw-r--r--test/firefox.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/firefox.sh.in b/test/firefox.sh.in
index 6e507b0..ba9ff18 100644
--- a/test/firefox.sh.in
+++ b/test/firefox.sh.in
@@ -10,5 +10,5 @@ G_DEBUG=${G_DEBUG-fatal_criticals}
export MOZ_PLUGIN_PATH EVBP_DEBUG G_DEBUG
[ -z "$1" ] && set -- "$abs_top_srcdir/test/test.html"
-[ -n "$EVBP_PROFILE" ] && set -- -P "$EVBP_PROFILE" "$@"
+[ -n "$EVBP_PROFILE" ] && set -- -no-remote -P "$EVBP_PROFILE" "$@"
exec $FIREFOX "$@"