| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 2e4990d2a7cfcbe4f18248b6d9d157ad180c7eed..1fa5b0fb4d0fecf2c008d40c74aa6514dc2a27cf 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -81,6 +81,13 @@ main() {
|
| var verbose = firstConf['verbose'];
|
| var printTiming = firstConf['time'];
|
| var listTests = firstConf['list'];
|
| +
|
| + if (!firstConf['append_flaky_log']) {
|
| + var file = new File(TestUtils.flakyFileName());
|
| + if (file.existsSync()) {
|
| + file.deleteSync();
|
| + }
|
| + }
|
|
|
| // Print the configurations being run by this execution of
|
| // test.dart. However, don't do it if the silent progress indicator
|
|
|