Frankenmint / googletest

Automatically exported from code.google.com/p/googletest
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

xml result is only generated at the end #346

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
the XML report is only created after every test finishes.
this means that if a test hangs, or a continuous integration suite such as 
teamcity timeouts the tests, there are not XML results of the run.

Original issue reported on code.google.com by avia...@gmail.com on 29 Dec 2010 at 7:08

GoogleCodeExporter commented 8 years ago
Please send your proposal/issue to the googletestframework@googlegroups.com 
mailing list before creating an issue here.  Thanks.

The XML report format requires writing the total number of failed tests at the 
*beginning* of the report.  That means we have to wait for the tests to finish 
before we can write the report.

We didn't pick the report format -- it was done to be consistent with what 
jUnit and Hudson use.

If you have more questions, please send them to 
googletestframework@googlegroups.com.  Thanks.

Original comment by w...@google.com on 29 Dec 2010 at 7:14