summaryrefslogtreecommitdiffstats
path: root/tests/tier.rc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tier.rc')
-rw-r--r--tests/tier.rc16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/tier.rc b/tests/tier.rc
index 393d712f3bb..3fa6af6a40f 100644
--- a/tests/tier.rc
+++ b/tests/tier.rc
@@ -18,6 +18,22 @@ function is_sticky_set () {
}
+function exists_and_regular_file () {
+ filepath=$1
+ if [ -n "$filepath" ];
+ then
+ if [ -k "$filepath" ]
+ then
+ echo "no"
+ else
+ echo "yes"
+ fi
+ else
+ echo "no"
+ fi
+}
+
+
function check_counters {
index=0
ret=0