aboutsummaryrefslogtreecommitdiff
path: root/tests/rmdir.test
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-03-02 15:20:04 -0600
committerRob Landley <rob@landley.net>2016-03-02 15:20:04 -0600
commit336c44adca1768ada1e1e2f4d7dbbc33e994e582 (patch)
tree9780ee9602ffbca6b04e472d3ac0d158f92ac49c /tests/rmdir.test
parenteb830728b12152702c3852d079ad5c8a7f6e709b (diff)
downloadtoybox-336c44adca1768ada1e1e2f4d7dbbc33e994e582.tar.gz
Factor out command name at the start of test name, have runtest.sh print it.
Diffstat (limited to 'tests/rmdir.test')
-rwxr-xr-xtests/rmdir.test20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/rmdir.test b/tests/rmdir.test
index a7b027e0..5b36bbc1 100755
--- a/tests/rmdir.test
+++ b/tests/rmdir.test
@@ -8,48 +8,48 @@ mkdir one
testing "rmdir" "rmdir one && [ ! -d one ] && echo yes" "yes\n" "" ""
touch walrus
-testing "rmdir file" \
+testing "file" \
"rmdir walrus 2> /dev/null || [ -f walrus ] && echo yes" "yes\n" "" ""
mkdir one two
-testing "rmdir one two" \
+testing "one two" \
"rmdir one two 2> /dev/null && [ ! -d one ] && [ ! -d two ] && echo yes" \
"yes\n" "" ""
mkdir one two three
-testing "rmdir one missing two file three" \
+testing "one missing two file three" \
"rmdir one missing two walrus three 2> /dev/null || [ ! -d three ] && echo yes" \
"yes\n" "" ""
rm walrus
mkdir one
chmod 000 one
-testing "rmdir mode 000" "rmdir one && [ ! -d one ] && echo yes" "yes\n" "" ""
+testing "mode 000" "rmdir one && [ ! -d one ] && echo yes" "yes\n" "" ""
mkdir temp
touch temp/thing
-testing "rmdir non-empty" \
+testing "non-empty" \
"rmdir temp 2>/dev/null || [ -d temp ] && echo yes" "yes\n" "" ""
-testing "rmdir -p dir/file" \
+testing "-p dir/file" \
"rmdir -p temp/thing 2>/dev/null || [ -f temp/thing ] && echo yes" \
"yes\n" "" ""
mkdir -p temp/one/two/three
-testing "rmdir -p part of path" \
+testing "-p part of path" \
"rmdir -p temp/one/two/three 2>/dev/null || [ -d temp ] && [ ! -e temp/one ] && echo yes" \
"yes\n" "" ""
rm -rf temp
mkdir -p one/two/three
-testing "rmdir -p one/two/three" \
+testing "-p one/two/three" \
"rmdir -p one/two/three && [ ! -e one ] && echo yes" "yes\n" "" ""
mkdir -p one/two/three
-testing "rmdir -p one/two/three/" \
+testing "-p one/two/three/" \
"rmdir -p one/two/three/ && [ ! -e one ] && echo yes" "yes\n" "" ""
#mkdir -p one/two/three
#chmod 000 one/two/three one/two one
-#testing "rmdir -p one/two/three" \
+#testing "-p one/two/three" \
# "rmdir -p one/two/three && [ ! -e one ] && echo yes" "yes\n" "" ""