Bug 424501: disable gnome bug-buddy dialog from runtests, r=waldo

This commit is contained in:
ajschult@verizon.net 2008-03-22 09:44:57 -07:00
parent fe0742f9e5
commit 810e830597
2 changed files with 2 additions and 0 deletions

View File

@ -621,6 +621,7 @@ sub runTests {
if ($unixish) {
$ENV{'LD_LIBRARY_PATH'} = $dist_bin;
$ENV{'MOZILLA_FIVE_HOME'} = $dist_bin;
$ENV{'GNOME_DISABLE_CRASH_DIALOG'} = '1';
}
for my $key (keys(%{$browser_env})) {

View File

@ -267,6 +267,7 @@ Are you executing $objdir/_tests/testing/mochitest/runtests.py?"""
if automation.UNIXISH:
browserEnv["LD_LIBRARY_PATH"] = automation.DIST_BIN
browserEnv["MOZILLA_FIVE_HOME"] = automation.DIST_BIN
browserEnv["GNOME_DISABLE_CRASH_DIALOG"] = "1"
for v in options.environment:
ix = v.find("=")