Chromium Code Reviews| Index: tools/testing/dart/test_suite.dart |
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart |
| index 24b1510503eff4892f3f01f8f91b391180251e71..d7e86b66172d034c9e1b68cf0a19f2e69b361ff4 100644 |
| --- a/tools/testing/dart/test_suite.dart |
| +++ b/tools/testing/dart/test_suite.dart |
| @@ -1395,6 +1395,12 @@ class StandardTestSuite extends TestSuite { |
| args.add('--no-hints'); |
| } |
| + if ((configuration["compiler"] == "dartanalyzer" || |
| + configuration["compiler"] == "dart2analyzer") && |
| + filePath.filename.contains("dart2js")) { |
| + args.add("--use-dart2js-libraries"); |
|
ricow1
2014/05/15 06:50:10
this is a major hack and we should try to do this
Emily Fortuna
2014/05/15 15:21:57
Agreed it's a major hack. I didn't know of a nicer
|
| + } |
| + |
| bool isMultitest = optionsFromFile["isMultitest"]; |
| List<String> dartOptions = optionsFromFile["dartOptions"]; |