summaryrefslogtreecommitdiffstats
path: root/tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh22
1 files changed, 21 insertions, 1 deletions
diff --git a/tests.sh b/tests.sh
index 006496b..8cf493c 100755
--- a/tests.sh
+++ b/tests.sh
@@ -283,7 +283,27 @@ function test_0053() {
find_diff "$basic" -size 9223372036854775807
}
-for i in {1..53}; do
+function test_0054() {
+ find_diff "$basic" -exec echo '{}' ';'
+}
+
+function test_0055() {
+ find_diff "$basic" -exec echo '-{}-' ';'
+}
+
+function test_0056() {
+ find_diff "$basic" -execdir pwd ';'
+}
+
+function test_0057() {
+ find_diff "$basic" -execdir echo '{}' ';'
+}
+
+function test_0058() {
+ find_diff "$basic" -execdir echo '-{}-' ';'
+}
+
+for i in {1..58}; do
test="test_$(printf '%04d' $i)"
"$test" "$dir"
status=$?