aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/TestResultAnalyzer.java
Commit message (Collapse)AuthorAge
* Use Bazel Preconditions variant which avoids varargs array creationGravatar Mark Schaller2015-12-10
| | | | | | | Reduces garbage. -- MOS_MIGRATED_REVID=109914243
* Deflake --runs_per_test_detects_flakes.Gravatar Brian Silverman2015-11-02
| | | | | | | | | | | Previously, if the first run failed (in iteration order, which I don't think is necessarily execution order) then --runs_per_test_detects_flakes would report FAILED instead of FLAKY. -- Change-Id: Ice7889d46203e1598d94a4e3c0bcbe13a45b0fe1 Reviewed-on: https://bazel-review.googlesource.com/#/c/2210/ MOS_MIGRATED_REVID=106693725
* Rationalize copyright headersGravatar Damien Martin-Guillerez2015-09-25
| | | | | | | | | | | The headers were modified with `find . -type f -exec 'sed' '-Ei' 's|Copyright 201([45]) Google|Copyright 201\1 The Bazel Authors|' '{}' ';'` And manual edit for not Google owned copyright. Because of the nature of ijar, I did not modified the header of file owned by Alan Donovan. The list of authors were extracted from the git log. It is missing older Google contributors that can be added on-demand. -- MOS_MIGRATED_REVID=103938715
* Move Label from the lib.syntax to the lib.cmdline package so that:Gravatar Lukacs Berki2015-09-21
| | | | | | | | | | - Label parsing can be simplified - lib.syntax is only contains the code for Skylark and is reasonably independent from the problem domain of building things This change is mostly only changes to imports declarations. The rest is reversing the dependency between :cmdline and :syntax and moving a tiny amount of code between Printer and FilesetEntry and the addition of SkylarkPrintableValue that I couldn't be bothered to separate out into its own change. -- MOS_MIGRATED_REVID=103527877
* Remove test warning filtering.Gravatar Eric Fellheimer2015-09-04
| | | | | -- MOS_MIGRATED_REVID=102345574
* Code cleanupGravatar Laurent Le Brun2015-09-03
| | | | | -- MOS_MIGRATED_REVID=102239051
* Test execution time warning contains target name. The rest of the message is ↵Gravatar Googler2015-03-18
| | | | | | | shortened. -- MOS_MIGRATED_REVID=88922152
* fix accumulating logic around cached testsGravatar Michajlo Matijkiw2015-02-11
| | | | | | | | | | | | | there was an error in the accounting of how many tests were actually executed vs those that were cached. this was a result of not considering remotely cached tests when accumulating test results. fix the bug and add some unit tests to prove out functionality, as well as some javadoc clarifying functionality. R=janakr -- MOS_MIGRATED_REVID=86112421
* fix bug where cov info wasn't being printed for some buildsGravatar Michajlo Matijkiw2015-02-09
| | | | | | | | | | | | | | coverage information was being added only if the build wasn't cached locally, and only if it wasn't attached before. the former was undesirable as the coverage data is still there and interesting. the latter prevented information being displayed for sharded tests note testing for exact coverage file names seems a bit flimsy, but if the code changes breaking our assumptions it should be simple enough to catch. -- MOS_MIGRATED_REVID=85896250
* Update from Google.Gravatar Han-Wen Nienhuys2015-02-25
-- MOE_MIGRATED_REVID=85702957