From: Jim Meyering Date: Thu, 3 Feb 2000 16:44:05 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: SH-UTILS-2_0f~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=afed58448d6e2c3ed94fd75bfbe5c6b1c6af59f5;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/tests/mv/dir-file b/tests/mv/dir-file index 15ac301430..2ed2b71b64 100755 --- a/tests/mv/dir-file +++ b/tests/mv/dir-file @@ -13,7 +13,7 @@ trap "cd $pwd; rm -rf $tmp" 0 1 2 3 15 framework_failure=0 mkdir $tmp || framework_failure=1 cd $tmp -mkdir dir dir/file || framework_failure=1 +mkdir -p dir/file || framework_failure=1 > file || framework_failure=1 if test $framework_failure = 1; then @@ -21,6 +21,7 @@ if test $framework_failure = 1; then exit 1 fi +# These should both fail, but until fileutils-4.0q only the second one did. mv dir file && fail=1 mv file dir && fail=1