summaryrefslogtreecommitdiffstats
path: root/tests/test_hidden_root.out
Commit message (Collapse)AuthorAgeFilesLines
* tests: Split test cases into separate filesTavian Barnes2022-10-191-5/+0
|
* tests: Use plain sort, not bfs_sortTavian Barnes2022-03-131-1/+1
| | | | | bfs_sort existed to keep the test outputs nicely in breadth-first order. Unfortunately the implementation using awk didn't support NUL bytes.
* eval: Make -hidden behave consistentlyTavian Barnes2020-11-281-0/+5
Previously there was an unexpected difference between $ bfs .hidden -hidden and $ bfs ./.hidden -hidden ./.hidden The intent of the code was to avoid considering `.`, the default starting point, as hidden and thus pruning a whole search with -nohidden. Fix it to do that explicitly, and handle `..` too.