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

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

Issue 2683793003: Add failing test (Closed)
Patch Set: Fixed path issue Created 3 years, 10 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
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 a1766e202cb7c8abc106e0c89d5643d62a1e3b26..d277f2cf0d27efeccd27c5988fd20959a275c151 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -177,7 +177,9 @@ abstract class AbstractAnalysisServerIntegrationTest
* [sourceDirectory] is created.
*/
Future setUp() {
- sourceDirectory = Directory.systemTemp.createTempSync('analysisServer');
+ sourceDirectory = new Directory(Directory.systemTemp
+ .createTempSync('analysisServer')
+ .resolveSymbolicLinksSync());
onAnalysisErrors.listen((AnalysisErrorsParams params) {
currentAnalysisErrors[params.file] = params.errors;
« no previous file with comments | « pkg/analysis_server/test/integration/execution/test_all.dart ('k') | pkg/analysis_server/test/integration/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698