Chromium Code Reviews| Index: tools/test.dart |
| =================================================================== |
| --- tools/test.dart (revision 19852) |
| +++ tools/test.dart (working copy) |
| @@ -144,6 +144,9 @@ |
| // vm tests contain both cc tests (added here) and dart tests (added in |
| // [TEST_SUITE_DIRECTORIES]). |
| testSuites.add(new VMTestSuite(conf)); |
| + } else if (conf['analyzer'] && key == 'dartc') { |
| + testSuites.add(new SamplesDartcTestSuite(conf)); |
| + testSuites.add(new JUnitDartcTestSuite(conf)); |
|
kustermann
2013/03/12 17:55:23
Why do we add these TestSuite's in case of the old
ricow1
2013/03/12 18:06:06
we do add them for the new one, but we actually do
|
| } else if (conf['compiler'] == 'dartc') { |
| if (key == 'dartc') { |
| testSuites.add(new SamplesDartcTestSuite(conf)); |