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

Unified Diff: pkg/analysis_server/test/integration/integration_tests.dart

Issue 1194393002: (TBR) improve integration test failure message (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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: pkg/analysis_server/test/integration/integration_tests.dart
diff --git a/pkg/analysis_server/test/integration/integration_tests.dart b/pkg/analysis_server/test/integration/integration_tests.dart
index 98e986034afaa11068e1f0e18eebd1a70973d1d1..3b7e13af389e84dbc584423085fbacebd435f0b1 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -152,7 +152,7 @@ abstract class AbstractAnalysisServerIntegrationTest
});
onServerError.listen((ServerErrorParams params) {
// A server error should never happen during an integration test.
- fail(params.message);
+ fail('${params.message}\n${params.stackTrace}');
});
return server.start().then((_) {
server.listenToOutput(dispatchNotification);
« 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