aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/unittest_test.sh
Commit message (Collapse)AuthorAge
* XML-escape test failure message in junit test results fileGravatar hlopko2017-04-05
| | | | | | | | | This cl does poor man's xml attribute escaping to fix http://ci.bazel.io/job/bazel-tests/BAZEL_VERSION=HEAD,PLATFORM_NAME=linux-x86_64/675/testReport/test/xml/_failed_to_read_/ RELNOTES: NONE. PiperOrigin-RevId: 152244340
* Make unittest.bash fill in testsuite infoGravatar Kristina Chodorow2016-11-11
| | | | | | | | | | It was copying $XML to $XML.bak, then piping the output of that (the empty string) through the seds. Relevant to #2070. -- MOS_MIGRATED_REVID=138783941
* Use a separate XML_OUTPUT_FILE for unittest.bash testsGravatar Damien Martin-Guillerez2016-01-19
| | | | | | | The current set-up was overwriting the XML_OUTPUT_FILE of unittest_test, leading to weird error on ci.bazel.io. -- MOS_MIGRATED_REVID=112462362
* Add unit tests for the new errexit feature in unittest.bash.Gravatar Philipp Wollermann2015-12-15
| | | | | -- MOS_MIGRATED_REVID=110148583
* Don't print an error message about cat if a test exits abnormallyGravatar Kristina Chodorow2015-12-10
| | | | | | | | | | On calls to fail, the failure message is written to $TEST_TMPDIR/__fail. This is cat-ed to get the message, but if the test exited without calling fail then an annoying 'cat: blah/blah/blah/__fail: No such file or directory' message is printed. This throws out the error message if the cat fails. -- MOS_MIGRATED_REVID=109896051
* 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
* Remove dependency on bcGravatar Kristina Chodorow2015-04-16
| | | | | | | This makes installation easier for systems that don't come with bc installed (e.g., Travis CI and Ubuntu Vivid Vervet). -- MOS_MIGRATED_REVID=91297054
* Open-source unittest.bashGravatar Damien Martin-Guillerez2015-03-18
This is part of the shell test infrastructure for Bazel. It creates test suites in Bazel shell. Handling the test ouputs efficiently for making test summaries. -- MOS_MIGRATED_REVID=88929067