Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(577)

Unified Diff: lib/src/runner/browser/firefox.dart

Issue 1090333003: Disable crash reporting on Firefox. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner/browser/firefox.dart
diff --git a/lib/src/runner/browser/firefox.dart b/lib/src/runner/browser/firefox.dart
index dac103be8178eaaccd5bd3a031c8dd5fc94d4c18..215f3a85885d77cbe0cf621dc670c6b051d21c98 100644
--- a/lib/src/runner/browser/firefox.dart
+++ b/lib/src/runner/browser/firefox.dart
@@ -65,7 +65,9 @@ class Firefox implements Browser {
"$_dir",
url.toString(),
"--no-remote"
- ]).then((process) {
+ ], environment: {
+ "MOZ_CRASHREPORTER_DISABLE": "1"
+ }).then((process) {
_process = process;
_onProcessStartedCompleter.complete();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698