summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* travis: Do 32-bit builds tooTavian Barnes2016-12-211-2/+13
|
* Set _FILE_OFFSET_BITS to 64Tavian Barnes2016-12-213-1/+8
| | | | | With the new support for -size n[TP], this is needed to avoid overflow on 32-bit platforms.
* Bump the version to 0.880.88Tavian Barnes2016-12-203-2/+19
|
* Add some text to the -help outputTavian Barnes2016-12-201-1/+27
|
* Implement -mnewerTavian Barnes2016-12-204-1/+20
|
* Add tera and peta suffices for -sizeTavian Barnes2016-12-203-3/+15
|
* Implement -sparse from FreeBSD findTavian Barnes2016-12-203-0/+22
|
* Support -[gu]id NAME like BSD findTavian Barnes2016-12-204-25/+59
|
* Don't check errno after get{gr,pw}nam()Tavian Barnes2016-12-201-24/+6
| | | | | Turns out it doesn't always keep errno 0, even if the only problem is a failed lookup. This was observed on a machine with Kerberos auth.
* Implement BSD find's -depth NTavian Barnes2016-12-1810-2/+95
|
* tests: Allow limiting the testsuite to POSIX, BSD, GNU, and bfs-specific ↵Tavian Barnes2016-12-187-11/+188
| | | | features
* tests.sh: Let the bfs binary be specified on the command lineTavian Barnes2016-12-181-21/+35
|
* Add support for -x (same as -mount/-xdev, from BSD)Tavian Barnes2016-12-181-0/+1
|
* Implement -regex, -iregex, and -regextype/-ETavian Barnes2016-12-1813-8/+218
|
* bftw: Clean up the dirqueue implementation a bitTavian Barnes2016-12-171-38/+34
|
* Fix the build on macOSTavian Barnes2016-12-171-0/+1
| | | | | macOS hides st_[acm]timespec if _POSIX_C_SOURCE is defined, unless _DARWIN_C_SOURCE is too.
* Fix the build on OpenIndianaTavian Barnes2016-12-162-1/+19
|
* Add a .travis.ymlTavian Barnes2016-12-082-0/+19
|
* tests: Fix failure when /tmp is a symlink.Tavian Barnes2016-12-081-1/+4
|
* tests: Don't use install -DTavian Barnes2016-12-081-7/+14
| | | | -D is a GNU-ism that doesn't work on BSD or macOS.
* tests: Don't check -size for directoriesTavian Barnes2016-12-055-29/+6
|
* tests: Don't check -links for directoriesTavian Barnes2016-12-054-12/+3
|
* Move portability code into util.hTavian Barnes2016-12-046-21/+51
|
* Release 0.84.10.84.1Tavian Barnes2016-11-243-2/+19
|
* Update some copyright dates.Tavian Barnes2016-11-246-6/+6
|
* Allow // to be different from /Tavian Barnes2016-11-244-10/+8
| | | | | | POSIX says that // may be resolved in an implementation-defined way (generally, to access network shares). So don't use it in tests, and don't canonicalize it to '/' in -execdir.
* bftw: Infer the flags in ftwbuf_stat()Tavian Barnes2016-11-231-5/+5
|
* tests: Make sure the temporary directory is owned by the current user/groupTavian Barnes2016-11-221-0/+1
| | | | | BSDs apparently prefer to create new files/directories with the same group as the parent directory, rather than the current primary group.
* tests: Mkae LC_ALL=C apply to the whole pipeline when sorting.Tavian Barnes2016-11-224-40/+43
|
* Don't pass AT_SYMLINK_NOFOLLOW to faccessat()Tavian Barnes2016-11-221-1/+1
| | | | It's an invalid flag for that call, and FreeBSD actually complains.
* bftw: Make a defensive copy of the ftwbufTavian Barnes2016-11-211-1/+4
| | | | | The callback may modify the ftwbuf, but we check it after the callback (for typeflag and statbuf). Have them mutate a copy instead.
* bftw: Always initialize dircache_entry::{dev,ino}Tavian Barnes2016-11-211-6/+7
| | | | | If stat() fails, they won't get filled in otherwise. Then cycle detection would have read uninitialized values.
* bftw: Make bftw_flags more similar to fts() options.Tavian Barnes2016-11-214-25/+30
|
* Support -perm +MODE for symbolic modes.Tavian Barnes2016-11-213-5/+1
| | | | Only things like -perm +777 are disallowed by GNU find.
* Fix -execdir for /Tavian Barnes2016-11-215-6/+30
|
* Fix -execdir for root paths with no slashes.Tavian Barnes2016-11-212-2/+6
|
* tests: Don't rely on the system 'find' for the expected output.Tavian Barnes2016-11-2188-142/+1011
|
* Check for readdir() errors everywhere.Tavian Barnes2016-11-144-18/+34
|
* Don't try to -delete the current directory.Tavian Barnes2016-11-132-1/+11
|
* bftw: Keep trailing slashes on the root in BFTW_DEPTH mode.Tavian Barnes2016-11-132-7/+21
|
* Redirect stdin from /dev/null for -ok and -okdir.Tavian Barnes2016-11-136-34/+113
|
* parse: Don't print warnings if standard in is not a terminal.Tavian Barnes2016-11-131-1/+1
|
* bftw: Don't fail just because we couldn't open/read a directory.Tavian Barnes2016-11-031-3/+3
| | | | | | | With BFTW_RECOVER set, we're not supposed to fail just because a single measly directory couldn't be handled. But using state.error as scratch space made us fail in this case. The end result is that #7 resurfaced, so fix it again.
* Bump the version to 0.840.84Tavian Barnes2016-10-293-2/+18
|
* Implement -perm.Tavian Barnes2016-10-294-13/+366
|
* parse: Use free_expr(expr), not free(expr).Tavian Barnes2016-10-241-7/+7
|
* tests.sh: Give some feedback while running.Tavian Barnes2016-10-241-1/+15
|
* tests: Be more careful not to invoke remove-siblings.sh $scratch.Tavian Barnes2016-10-241-1/+1
|
* Implement -ignore_readdir_race.Tavian Barnes2016-10-246-31/+82
|
* Check for POSIX timers before using them.Tavian Barnes2016-10-242-7/+48
|