summaryrefslogtreecommitdiff
path: root/tests/mv_tests.mk
diff options
context:
space:
mode:
authorEric Andersen2000-12-11 17:33:08 +0000
committerEric Andersen2000-12-11 17:33:08 +0000
commit59ec601b8e4db86e1861d12f4efc6d1dbb440e28 (patch)
treefff533c0d7940113db52c3f2c88d591fd278c2f5 /tests/mv_tests.mk
parenta293a516ad5af82028425f23a722fb75411d985b (diff)
downloadbusybox-59ec601b8e4db86e1861d12f4efc6d1dbb440e28.zip
busybox-59ec601b8e4db86e1861d12f4efc6d1dbb440e28.tar.gz
Test suite update from Larry Doolittle to disable some problematic
ambiguous cases. Everything now passes the test suite...
Diffstat (limited to 'tests/mv_tests.mk')
-rw-r--r--tests/mv_tests.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/mv_tests.mk b/tests/mv_tests.mk
index 81b8ffd..f03e08a 100644
--- a/tests/mv_tests.mk
+++ b/tests/mv_tests.mk
@@ -144,8 +144,8 @@ mv_tests: mv_clean mv
@echo; echo ------------------------------;
@echo There should be an error message about cannot mv a dir to a subdir of itself.
cd mv_tests; \
- touch a b c; \
mkdir adir; \
+ touch -r . a b c adir; \
ls -lR . > ../mv_a_star_adir.gnu; \
${GMV} * adir; \
ls -lR . >> ../mv_a_star_adir.gnu;
@@ -153,8 +153,9 @@ mv_tests: mv_clean mv
@echo
@echo There should be an error message about cannot mv a dir to a subdir of itself.
cd mv_tests; \
- rm -rf adir; \
+ rm -rf a b c adir; \
mkdir adir; \
+ touch -r . a b c adir; \
ls -lR . > ../mv_a_star_adir.bb; \
${BMV} * adir; \
ls -lR . >> ../mv_a_star_adir.bb;