1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-05 08:10:15 +02:00

*** empty log message ***

This commit is contained in:
Jim Meyering
2000-02-03 16:44:05 +00:00
parent 83b7332303
commit afed58448d
+2 -1
View 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