aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/shell
Commit message (Collapse)AuthorAge
* Migrate all tests to Truth (except the ones in the examples).Gravatar lberki2017-05-31
| | | | | RELNOTES: None. PiperOrigin-RevId: 157576492
* Migrate Java tests to Truth.Gravatar lberki2017-05-30
| | | | | | RELNOTES: None. PiperOrigin-RevId: 157446717
* Simplify LocalSpawnRunnerGravatar ulfjack2017-04-18
| | | | PiperOrigin-RevId: 153444516
* Implement an abstraction layer over java.lang.Process so that the Windows ↵Gravatar Lukacs Berki2016-07-04
| | | | | | | implementation can eventually be plugged in. -- MOS_MIGRATED_REVID=126404913
* Remove InterruptibleTest#testInterruptibleCommandGravatar Damien Martin-Guillerez2016-03-31
| | | | | | | | | This test has been flaky for a long time and does not test what it is supposed to test. Fixes #248. -- MOS_MIGRATED_REVID=118668487
* Use absolute paths in ProcessBuilder invocations.Gravatar Dmitry Lomov2016-02-17
| | | | | | | Needed for #276. -- MOS_MIGRATED_REVID=114838538
* Migrated tests in devtools/build/lib/shell to JUnit 4.Gravatar Florian Weikert2015-12-02
| | | | | -- MOS_MIGRATED_REVID=109205227
* 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
* workers: Make sure to wait for worker processes to exit so that they don't ↵Gravatar Philipp Wollermann2015-09-21
| | | | | | | become zombies. -- MOS_MIGRATED_REVID=103541217
* Remove the ShellTests class and use the existing AllTests instead.Gravatar Ulf Adams2015-05-04
| | | | | -- MOS_MIGRATED_REVID=92716023
* This should fix the shell tests.Gravatar Ulf Adams2015-04-22
| | | | | | | | | | | - expectation in testSimpleKillableObserver is wrong - work around race condition in testSimpleKillableObserver by sleeping - make FutureConsumptionTest thread-safe Thanks to Adrian Colley for the report. -- MOS_MIGRATED_REVID=91678160
* Explicitly use bash to test negative exit codesGravatar Kristina Chodorow2015-04-13
| | | | | | | | | | | | sh doesn't actually support negative exit codes, so if someone (Travis) uses a different version than we're using, they'll get exit code 2 (misuse of shell builtin), not <exit code>%256. See https://lists.gnu.org/archive/html/bug-bash/2011-08/msg00027.html for some examples/discussion. -- MOS_MIGRATED_REVID=90828267
* Some more cleanup.Gravatar Ulf Adams2015-03-10
| | | | | -- MOS_MIGRATED_REVID=87942730
* Get rid of remaining timing assertion in InterruptibleTest.Gravatar Han-Wen Nienhuys2015-03-05
| | | | | | | This fixes flakiness on underpowered machines. -- MOS_MIGRATED_REVID=87824341
* Remove meaningless timing check. This should decrease flakiness underGravatar Han-Wen Nienhuys2015-02-25
| | | | | | | load. -- MOS_MIGRATED_REVID=87143293
* Decrease flakiness of InterruptibleTest.testInterruptible.Gravatar Han-Wen Nienhuys2015-02-24
| | | | | -- MOS_MIGRATED_REVID=87066171
* Fix testOnlyReadsPartialInput on Darwin.Gravatar Han-Wen Nienhuys2015-02-16
| | | | | -- MOS_MIGRATED_REVID=86431291
* Use /bin/bash for the Flush test.Gravatar Han-Wen Nienhuys2015-02-16
| | | | | -- MOS_MIGRATED_REVID=86430394
* Remove shell.Shell. The windows support is unused.Gravatar Han-Wen Nienhuys2015-02-16
| | | | | -- MOS_MIGRATED_REVID=86427416
* Add shell tests to bazel.Gravatar Han-Wen Nienhuys2015-02-12
-- MOS_MIGRATED_REVID=86171408