Chromium Code Reviews| Index: tools/testing/dart/test_suite.dart |
| =================================================================== |
| --- tools/testing/dart/test_suite.dart (revision 15134) |
| +++ tools/testing/dart/test_suite.dart (working copy) |
| @@ -1033,10 +1033,16 @@ |
| // Create '[build dir]/generated_tests/$compiler-$runtime/$testUniqueName', |
| // including any intermediate directories that don't exist. |
| + // If the tests are run in checked or minified mode we add that to the |
| + // '$compile-$runtime' directory name. |
| + var checked = configuration['checked'] ? '-checked' : ''; |
| + var minified = configuration['minified'] ? '-minified' : ''; |
|
ngeoffray
2012/11/20 10:32:28
Is configuration the list of flags passed to the c
ricow1
2012/11/26 13:27:23
No it is not, configuration is a ton of stuff
|
| + var dirName = "${configuration['compiler']}-${configuration['runtime']}" |
| + "$checked$minified"; |
| var generatedTestPath = Strings.join([ |
| buildDir, |
| 'generated_tests', |
| - "${configuration['compiler']}-${configuration['runtime']}", |
| + dirName, |
| testUniqueName |
| ], '/'); |