diff options
Diffstat (limited to 'tests/readlink/can-e')
-rwxr-xr-x | tests/readlink/can-e | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/readlink/can-e b/tests/readlink/can-e index c2ad5046e..9034a9a19 100755 --- a/tests/readlink/can-e +++ b/tests/readlink/can-e @@ -23,18 +23,18 @@ pwd=`pwd` my_pwd=$("$abs_top_builddir/src/pwd") tmp=d -mkdir $tmp || framework_failure -cd $tmp || framework_failure +mkdir $tmp || framework_failure_ +cd $tmp || framework_failure_ -mkdir subdir removed || framework_failure -touch regfile || framework_failure +mkdir subdir removed || framework_failure_ +touch regfile || framework_failure_ -ln -s regfile link1 || framework_failure -ln -s subdir link2 || framework_failure -ln -s missing link3 || framework_failure -ln -s subdir/missing link4 || framework_failure +ln -s regfile link1 || framework_failure_ +ln -s subdir link2 || framework_failure_ +ln -s missing link3 || framework_failure_ +ln -s subdir/missing link4 || framework_failure_ -cd "$pwd/$tmp/removed" || framework_failure +cd "$pwd/$tmp/removed" || framework_failure_ # Skip this test if the system doesn't let you remove the working directory. if rmdir ../removed 2>/dev/null; then |