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

Unified Diff: tests/standalone/io/test_runner_test.dart

Issue 2019163002: Make test.dart override only those dependencies declared in the pubspec.yaml (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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/pkgbuild.status ('k') | tools/.packages » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/test_runner_test.dart
diff --git a/tests/standalone/io/test_runner_test.dart b/tests/standalone/io/test_runner_test.dart
index e5ec3aef62bd3fce4045f7424a38b39ebbccc744..1eaae3f15889d7b62df915a0a95b06ac824f102a 100644
--- a/tests/standalone/io/test_runner_test.dart
+++ b/tests/standalone/io/test_runner_test.dart
@@ -85,7 +85,8 @@ class CustomTestSuite extends TestSuite {
TestCase _makeNormalTestCase(name, expectations) {
var command = CommandBuilder.instance.getProcessCommand(
- 'custom', Platform.executable, [Platform.script.toFilePath(), name],
+ 'custom', Platform.executable,
+ ['--package-root=${Platform.packageRoot}', Platform.script.toFilePath(), name],
{});
return _makeTestCase(name, DEFAULT_TIMEOUT, command, expectations);
}
« no previous file with comments | « pkg/pkgbuild.status ('k') | tools/.packages » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698