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

Unified Diff: sdk/lib/_internal/pub/test/test_pub.dart

Issue 50463005: Don't skip tests on machines without git. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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: sdk/lib/_internal/pub/test/test_pub.dart
diff --git a/sdk/lib/_internal/pub/test/test_pub.dart b/sdk/lib/_internal/pub/test/test_pub.dart
index 2c85e8c3917f24f0d458de48dabf57f63ed33834..04ad649eafedf4c5bc8e4e74518c6f257b92b493 100644
--- a/sdk/lib/_internal/pub/test/test_pub.dart
+++ b/sdk/lib/_internal/pub/test/test_pub.dart
@@ -46,10 +46,6 @@ initConfig() {
unittestConfiguration.timeout = null;
}
-/// Returns whether we're running on a Dart build bot.
-bool get runningOnBuildbot =>
- Platform.environment.containsKey('BUILDBOT_BUILDERNAME');
-
/// The current [HttpServer] created using [serve].
var _server;
@@ -582,14 +578,13 @@ class PubProcess extends ScheduledProcess {
/// The path to the `packages` directory from which pub loads its dependencies.
String get _packageRoot => path.absolute(Platform.packageRoot);
-/// Skips the current test if Git is not installed. This validates that the
-/// current test is running on a buildbot in which case we expect git to be
-/// installed. If we are not running on the buildbot, we will instead see if
-/// git is installed and skip the test if not. This way, users don't need to
-/// have git installed to run the tests locally (unless they actually care
-/// about the pub git tests).
+/// Fails the current test if Git is not installed.
+///
+/// We require machines running these tests to have git installed. This
+/// validation gives an easier-to-understand error when that requirement isn't
+/// met than just failing in the middle of a test when pub invokes git.
///
-/// This will also increase the [Schedule] timeout to 30 seconds on Windows,
+/// This also increases the [Schedule] timeout to 30 seconds on Windows,
/// where Git runs really slowly.
void ensureGit() {
if (Platform.operatingSystem == "windows") {
@@ -598,9 +593,9 @@ void ensureGit() {
schedule(() {
return gitlib.isInstalled.then((installed) {
- if (installed) return;
- if (runningOnBuildbot) return;
- currentSchedule.abort();
+ if (!installed) {
+ throw new Exception("Git must be installed to run this test.");
+ }
});
}, 'ensuring that Git is installed');
}
« 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