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

Unified Diff: sdk/lib/_internal/pub/test/serve/detects_a_transformer_cycle.dart

Issue 24199004: Change pub tests and pub local server to use ipV4 localhost by address. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use pub serve 'hostname' option in tests of pub. Created 7 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
Index: sdk/lib/_internal/pub/test/serve/detects_a_transformer_cycle.dart
diff --git a/sdk/lib/_internal/pub/test/serve/detects_a_transformer_cycle.dart b/sdk/lib/_internal/pub/test/serve/detects_a_transformer_cycle.dart
index 1da308071637c3914901aebaf6785658effb2b56..192b348d5885deb40cb097f93f2233a45c44b803 100644
--- a/sdk/lib/_internal/pub/test/serve/detects_a_transformer_cycle.dart
+++ b/sdk/lib/_internal/pub/test/serve/detects_a_transformer_cycle.dart
@@ -39,7 +39,7 @@ main() {
createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']);
// Use port 0 to get an ephemeral port.
- var process = startPub(args: ["serve", "--port=0"]);
+ var process = startPub(args: ["serve", "--port=0", "--hostname=127.0.0.1"]);
process.shouldExit(1);
expect(process.remainingStderr(), completion(equals(
"Transformer cycle detected:\n"

Powered by Google App Engine
This is Rietveld 408576698