diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-12-11 17:33:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-12-11 17:33:08 +0000 |
commit | 59ec601b8e4db86e1861d12f4efc6d1dbb440e28 (patch) | |
tree | fff533c0d7940113db52c3f2c88d591fd278c2f5 /tests/mv_tests.mk | |
parent | a293a516ad5af82028425f23a722fb75411d985b (diff) | |
download | 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.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/mv_tests.mk b/tests/mv_tests.mk index 81b8ffdec..f03e08a73 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; |