summaryrefslogtreecommitdiff
path: root/tests/common.local
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common.local')
-rw-r--r--tests/common.local15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/common.local b/tests/common.local
index d2b8d073..f5e96f5b 100644
--- a/tests/common.local
+++ b/tests/common.local
@@ -14,11 +14,24 @@ fi
# gets arguments of a current command and can decide if the argument insertion
# should happen, eg. if some option combination does not make sense or would
# break tests
+#
+# Return 0 if we need to skip option override
+# Return 1 if we don't need to skip option override
_skip_spec()
{
+ local beacon
+
+ beacon=.lowmem_repairable
+
+ # For lowmem repair, only support fs tree repair for now
+ # So we place lowmem repair beacon in the same dir of the test case
if echo "$TEST_ARGS_CHECK" | grep -q 'mode=lowmem' &&
echo "$@" | grep -q -- '--repair'; then
- return 0
+ dir="$(dirname ${@: -1})"
+ if [ -f ${dir}/${beacon} ]; then
+ return 1;
+ fi
+ return 0;
fi
return 1
}