Make test.dart always create a result.log file when --write-result-log is set

Before this, if zero tests were run the file wasn't created.

Bug:
Change-Id: I446a90eeb68dca3ee1fe66d473cd55887c206bc1
R=athom@google.com
CC=mkroghj@google.com
Reviewed-on: https://dart-review.googlesource.com/16527
Reviewed-by: Alexander Thomas <athom@google.com>
This commit is contained in:
William Hesse 2017-10-25 17:27:15 +00:00
parent 4c86f98d7a
commit fabb04d47c
2 changed files with 8 additions and 0 deletions

View file

@ -38,6 +38,7 @@ fasta:pkg/fasta/lib
fixnum:third_party/pkg/fixnum/lib
front_end:pkg/front_end/lib
func:third_party/pkg/func/lib
gardening:tools/gardening/lib
glob:third_party/pkg/glob/lib
html:third_party/pkg/html/lib
http:third_party/pkg/http/lib

View file

@ -247,6 +247,13 @@ Future testConfigurations(List<Configuration> configurations) async {
if (firstConf.writeResultLog) {
eventListener.add(new ResultLogWriter());
// TODO(mkroghj): The recipe fails if a test.py step doesn't create a
// results.log when no tests are run. Temporary fix to always make a log.
if (firstConf.outputDirectory != null) {
var path = new Path(firstConf.outputDirectory);
new File(path.append(TestUtils.resultLogFileName).toNativePath())
.createSync(recursive: true);
}
}
if (firstConf.copyCoreDumps) {