From f1401f09c59363170f021c4a1676735be2e3cc44 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 12 Mar 2016 16:07:34 -0500 Subject: Implement -size. --- tests.sh | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'tests.sh') diff --git a/tests.sh b/tests.sh index a6c40b7..006496b 100755 --- a/tests.sh +++ b/tests.sh @@ -267,7 +267,23 @@ function test_0049() { find_diff "$basic" -newermc "$basic/e/f" } -for i in {1..49}; do +function test_0050() { + find_diff "$basic" -size 0 +} + +function test_0051() { + find_diff "$basic" -size +0 +} + +function test_0052() { + find_diff "$basic" -size +0c +} + +function test_0053() { + find_diff "$basic" -size 9223372036854775807 +} + +for i in {1..53}; do test="test_$(printf '%04d' $i)" "$test" "$dir" status=$? -- cgit v1.2.3