Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | tests: Test -exec with a nonexistent command | Tavian Barnes | 2022-10-05 | 1 | -0/+40 |
| | |||||
* | tests: POSIX doesn't *require* -ok ... {} + to be unsupported | Tavian Barnes | 2022-09-18 | 1 | -2/+11 |
| | |||||
* | tests: Don't pass NUL bytes to sort | Tavian Barnes | 2022-07-18 | 1 | -5/+11 |
| | | | | The tests now pass with busybox instead of coreutils. | ||||
* | tests: Limit path lengths passed to mkdir | Tavian Barnes | 2022-07-13 | 1 | -4/+7 |
| | | | | FreeBSD limits mkdir() to 1023 bytes, not 4096. | ||||
* | tests: Set colors to the empty string for non-ttys | Tavian Barnes | 2022-07-13 | 1 | -0/+9 |
| | |||||
* | tests: Use set -u | Tavian Barnes | 2022-07-13 | 1 | -2/+2 |
| | |||||
* | tests: Optimize startup | Tavian Barnes | 2022-07-13 | 1 | -14/+14 |
| | | | | ./tests.sh is about 110ms faster on my machine with this patch. | ||||
* | tests: Add tests for parsing failures in more locations | Tavian Barnes | 2022-07-13 | 1 | -0/+15 |
| | |||||
* | tests: New test for -exec with unset $PATH | Tavian Barnes | 2022-07-12 | 1 | -0/+11 |
| | |||||
* | tests: Simplify snapshot testing without bfs_diff | Tavian Barnes | 2022-07-12 | 1 | -102/+51 |
| | |||||
* | tests: Add a test for every printf directive | Tavian Barnes | 2022-06-01 | 1 | -0/+13 |
| | |||||
* | tests: Add tests for -warn/-nowarn | Tavian Barnes | 2022-05-29 | 1 | -0/+13 |
| | |||||
* | tests: Don't print test names to non-ttys without --verbose=tests | Tavian Barnes | 2022-05-20 | 1 | -6/+15 |
| | | | | This should shrink the CI logs appreciably. | ||||
* | Makefile: Add a BUILDDIR variable for out-of-tree builds | Tavian Barnes | 2022-05-20 | 1 | -1/+6 |
| | | | | bfs can now be built from a read-only source tree. | ||||
* | Makefile: Split build into bin and obj directories | Tavian Barnes | 2022-05-16 | 1 | -0/+3433 |
This also moves the main binary from ./bfs to ./bin/bfs, and ./tests.sh to ./tests/tests.sh, with the goal of keeping the repository root clean. |