X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fqa%2Fworkunits%2Ffs%2Fmisc%2Fi_complete_vs_rename.sh;fp=src%2Fceph%2Fqa%2Fworkunits%2Ffs%2Fmisc%2Fi_complete_vs_rename.sh;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=a9b98271df11a7500c937f661f5808fb41fbedf9;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/qa/workunits/fs/misc/i_complete_vs_rename.sh b/src/ceph/qa/workunits/fs/misc/i_complete_vs_rename.sh deleted file mode 100755 index a9b9827..0000000 --- a/src/ceph/qa/workunits/fs/misc/i_complete_vs_rename.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -set -e - -mkdir x -cd x -touch a -touch b -touch c -touch d -ls -chmod 777 . -stat e || true -touch f -touch g - -# over existing file -echo attempting rename over existing file... -touch ../xx -mv ../xx f -ls | grep f || false -echo rename over existing file is okay - -# over negative dentry -echo attempting rename over negative dentry... -touch ../xx -mv ../xx e -ls | grep e || false -echo rename over negative dentry is ok - -echo OK