diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-02-13 13:13:51 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-02-13 13:13:51 -0500 |
commit | a54c9309c3291a960fcbcbc9e6407330a9edd044 (patch) | |
tree | e9856b49a15deb4b47c03540cfc3208704472876 /tests.sh | |
parent | 55fb616348d114a1451ab6cf502a3768d6284e9a (diff) | |
download | bfs-a54c9309c3291a960fcbcbc9e6407330a9edd044.tar.xz |
Implement -xtype.
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -183,7 +183,23 @@ function test_0028() { find_diff "$links" -samefile "$links/a" } -for i in {1..28}; do +function test_0029() { + find_diff "$links" -xtype l +} + +function test_0030() { + find_diff "$links" -xtype f +} + +function test_0031() { + find_diff -L "$links" -xtype l 2>/dev/null +} + +function test_0032() { + find_diff -L "$links" -xtype f 2>/dev/null +} + +for i in {1..32}; do test="test_$(printf '%04d' $i)" "$test" "$dir" status=$? |