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

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

Issue 1366923003: add performance tests (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: move tests to benchmark Created 5 years, 3 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 | « pkg/analysis_server/benchmark/perf/performance_tests.dart ('k') | 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 08fb56d02234d4b67b2697f29549d6e479f0dad9..ed2d62af2dcf1a44e56ffe4ca7293f40c2fa1bc5 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -197,7 +197,7 @@ abstract class AbstractAnalysisServerIntegrationTest
* After every test, the server is stopped and [sourceDirectory] is deleted.
*/
Future tearDown() {
- return _shutdownIfNeeded().then((_) {
+ return shutdownIfNeeded().then((_) {
sourceDirectory.deleteSync(recursive: true);
});
}
@@ -222,7 +222,7 @@ abstract class AbstractAnalysisServerIntegrationTest
/**
* If [skipShutdown] is not set, shut down the server.
*/
- Future _shutdownIfNeeded() {
+ Future shutdownIfNeeded() {
if (skipShutdown) {
return new Future.value();
}
« no previous file with comments | « pkg/analysis_server/benchmark/perf/performance_tests.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698