Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | ctx: Don't include std{out,err} in the open file count | Tavian Barnes | 2022-03-09 | 1 | -1/+5 | |
| | ||||||
* | bftw: Fix open FD accounting | Tavian Barnes | 2022-03-09 | 1 | -3/+2 | |
| | | | | | Due to the introduction of bfs_dir, we don't need to reserve an extra file descriptor for the currently open directory. | |||||
* | bftw: Keep root paths at the head of the LRU list | Tavian Barnes | 2022-03-09 | 1 | -4/+25 | |
| | | | | | With a low ulimit -n, this brings performance back in line with the old heap based implementation. | |||||
* | Revert "darray: New DARRAY_POP() macro" | Tavian Barnes | 2022-03-09 | 2 | -32/+0 | |
| | | | | This reverts commit 6ac4deb451ccd4ed11fb0d022b83710b5b0522fe. | |||||
* | bftw: Bring back the LRU list | Tavian Barnes | 2022-03-09 | 1 | -158/+78 | |
| | ||||||
* | Makefile: Add lsan and tsan flag targets | Tavian Barnes | 2022-03-09 | 1 | -1/+13 | |
| | ||||||
* | Merge pull request #84 from chapmanjacobd/patch-1 | Tavian Barnes | 2022-03-07 | 1 | -0/+3 | |
|\ | | | | | docs: readme: add fedora deps | |||||
| * | add fedora deps | Jacob Chapman | 2022-03-08 | 1 | -0/+3 | |
|/ | ||||||
* | README: Fix typo | Tavian Barnes | 2022-03-01 | 1 | -1/+1 | |
| | ||||||
* | Makefile: Make separate variables for Oniguruma flags | Tavian Barnes | 2022-02-28 | 1 | -3/+6 | |
| | | | | | | This allows customizing the necessary flags if onig-config isn't available or is undesirable (e.g. when linking against a non-system build of libonig). | |||||
* | parse: Check for globs with unescaped trailing backslashes | Tavian Barnes | 2022-02-28 | 2 | -5/+23 | |
| | | | | | | | | | | Both macOS and musl fail to fail on an unescaped backslash, so check for it ourselves. Link: https://pubs.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html Link: https://github.com/void-linux/void-packages/pull/35836 Link: https://www.openwall.com/lists/musl/2022/02/25/2 Link: https://www.austingroupbugs.net/view.php?id=806 | |||||
* | Release 2.4.12.4.1 | Tavian Barnes | 2022-02-24 | 3 | -2/+16 | |
| | ||||||
* | README: Fix CI status badges | Tavian Barnes | 2022-02-24 | 2 | -4/+2 | |
| | ||||||
* | regex: Rework error handling | Tavian Barnes | 2022-02-24 | 5 | -91/+102 | |
| | ||||||
* | regex: Use the encoding from the current locale | Tavian Barnes | 2022-02-24 | 3 | -10/+94 | |
| | ||||||
* | regex: Test if the string is valid before matching | Tavian Barnes | 2022-02-24 | 1 | -0/+8 | |
| | ||||||
* | ci: Unify multiple workflows into one with separate jobs | Tavian Barnes | 2022-02-24 | 4 | -89/+87 | |
| | ||||||
* | ci/freebsd: Fix missing trailing single quote | Tavian Barnes | 2022-02-24 | 1 | -1/+1 | |
| | ||||||
* | Makefile: Automatically discover the right flags to build with Oniguruma | Tavian Barnes | 2022-02-24 | 2 | -5/+12 | |
| | | | | Fixes #82. | |||||
* | regex: Always set REG_STARTEND if available | Tavian Barnes | 2022-02-23 | 1 | -5/+3 | |
| | ||||||
* | regex: Use onig_match() to implement BFS_REGEX_ANCHOR | Tavian Barnes | 2022-02-23 | 1 | -10/+8 | |
| | ||||||
* | Release 2.42.4 | Tavian Barnes | 2022-02-22 | 3 | -2/+21 | |
| | ||||||
* | README: Reformat with details blocks to make it more easily skimmable | Tavian Barnes | 2022-02-22 | 1 | -30/+111 | |
| | | | | | And add some extra information about bfs-specific features, and installing dependencies. | |||||
* | Use EXTRA_CFLAGS instead of CFLAGS in make distcheck | Tavian Barnes | 2022-02-21 | 1 | -1/+1 | |
| | ||||||
* | Enable Oniguruma by default | Tavian Barnes | 2022-02-21 | 4 | -7/+15 | |
| | ||||||
* | regex: Use the real Oniguruma API, not the POSIX wrapper | Tavian Barnes | 2022-02-21 | 1 | -11/+84 | |
| | | | | | | | Not every Oniguruma installation enables the POSIX wrapper, so we need our own wrapper for portability. As well, older versions of Oniguruma have symbol clashes with libc for the POSIX regex API, so using it can be unsafe. | |||||
* | regex: Wrap the POSIX API in a facade | Tavian Barnes | 2022-02-21 | 7 | -63/+152 | |
| | ||||||
* | tests: Mark -fprint/-exec flushing test bfs-specific | Tavian Barnes | 2022-02-18 | 1 | -2/+3 | |
| | | | | GNU find doesn't do it, so no reason to require it for compatibility. | |||||
* | exec: Flush I/O streams before executing anything | Tavian Barnes | 2022-02-11 | 5 | -1/+67 | |
| | | | | | | Otherwise output from commands may appear unexpectedly earlier than output from bfs. We use fflush(NULL) to flush all streams, which is more than GNU find does, but seems to be a useful extension. | |||||
* | ctx: Also check ferror(stdout) | Tavian Barnes | 2022-02-11 | 1 | -15/+27 | |
| | | | | | | Previously this was checked for all other files, but for stdout we just checked the return value of fflush(). Checking ferror() makes sure we don't miss any errors that occurred on a previous flush. | |||||
* | tests: Use skip_if for tests that need /dev/full | Tavian Barnes | 2022-02-11 | 1 | -22/+14 | |
| | ||||||
* | tests: Add a test that -exit suppresses the implicit -print | Tavian Barnes | 2022-02-10 | 2 | -0/+5 | |
| | ||||||
* | Makefile: Allow extra flags to be passed with EXTRA_*FLAGS variables | Tavian Barnes | 2022-02-09 | 1 | -4/+4 | |
| | ||||||
* | tests: Skip case insensitive tests if FNM_CASEFOLD is missing | Tavian Barnes | 2022-02-08 | 1 | -0/+5 | |
| | ||||||
* | tests: Separate skipped tests from passing tests | Tavian Barnes | 2022-02-08 | 1 | -34/+39 | |
| | ||||||
* | tests: Disable some glob tests on macOS | Tavian Barnes | 2022-02-04 | 1 | -0/+10 | |
| | | | | | macOS seems to have a non-compliant fnmatch() that doesn't treat invalid character class expressions literally. | |||||
* | regex: Add support for emacs and grep types | Tavian Barnes | 2022-02-04 | 11 | -31/+151 | |
| | ||||||
* | tests: Add tests for syntactically invalid globs | Tavian Barnes | 2022-02-02 | 13 | -0/+46 | |
| | ||||||
* | tests: New tests for -i?wholename | Tavian Barnes | 2022-02-01 | 3 | -0/+26 | |
| | ||||||
* | tests: New test for ** in a glob | Tavian Barnes | 2022-02-01 | 2 | -0/+9 | |
| | ||||||
* | tests: New test for -prune on a non-directory | Tavian Barnes | 2022-02-01 | 2 | -0/+15 | |
| | ||||||
* | tests: Try to color diff output | Tavian Barnes | 2022-02-01 | 1 | -11/+18 | |
| | ||||||
* | tests: set -P for the whole script | Tavian Barnes | 2022-02-01 | 1 | -2/+1 | |
| | | | | We rely on physical path resolution in test_execdir_pwd. | |||||
* | tests: Allow tests.sh to be invoked from any directory | Tavian Barnes | 2022-02-01 | 2 | -14/+22 | |
| | | | | | This also resolves the path passed to --bfs early, so --bfs=./bfs now works. | |||||
* | parse: Add support for ed and sed regexes | Tavian Barnes | 2022-01-30 | 4 | -1/+20 | |
| | | | | They're apparently the same as POSIX basic regexes. | |||||
* | Revert "tests: Add a test for posix-basic alternation" | Tavian Barnes | 2022-01-29 | 2 | -7/+0 | |
| | | | | | | | Turns out alternation is not actually part of the POSIX basic regular expression language, it's just a glibc extension. This reverts commit c898af13a671ee92a056467d324f16823594eb1c. | |||||
* | tests: Add a test for posix-basic alternation | Tavian Barnes | 2022-01-29 | 2 | -0/+7 | |
| | ||||||
* | Standardize WITH_* make variables for configuring dependencies | Tavian Barnes | 2022-01-29 | 7 | -32/+54 | |
| | ||||||
* | Merge pull request #81 from data-man:oniguruma_1 | Tavian Barnes | 2022-01-29 | 7 | -6/+37 | |
|\ | ||||||
| * | Apply suggestions from code review | data-man | 2022-01-24 | 2 | -12/+8 | |
| | |