| Index: tools/testing/dart/test_suite.dart
|
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
|
| index ff40733caa5678deeac473ea690efccc3c19b50c..4a12b7a80afbf7db0e0a8e73d4225234a2a7d4cf 100644
|
| --- a/tools/testing/dart/test_suite.dart
|
| +++ b/tools/testing/dart/test_suite.dart
|
| @@ -1790,14 +1790,14 @@ class PkgBuildTestSuite extends TestSuite {
|
| var dartBinary = new File(dartVmBinaryFileName).absolute.path;
|
|
|
| commands.add(CommandBuilder.instance.getProcessCommand(
|
| - "custom_build", dartBinary, ['build.dart'], null,
|
| - checkoutDir));
|
| + "custom_build", dartBinary, ['build.dart'],
|
| + {'PUB_CACHE': cacheDir}, checkoutDir));
|
|
|
| // We only try to deploy the application if it's a webapp.
|
| if (containsWebDirectory) {
|
| commands.add(CommandBuilder.instance.getProcessCommand(
|
| - "custom_deploy", dartBinary, ['build.dart', '--deploy'], null,
|
| - checkoutDir));
|
| + "custom_deploy", dartBinary, ['build.dart', '--deploy'],
|
| + {'PUB_CACHE': cacheDir}, checkoutDir));
|
| }
|
| } else if (containsWebDirectory) {
|
| commands.add(CommandBuilder.instance.getPubCommand(
|
|
|