This will ignore scripts placed at the qa/standalone level, though
I'm not sure if we should be putting any tests there. It does
allow support scripts present like ceph-helper.sh without modifying
run-standalone.sh to ignore it.
Signed-off-by: David Zafman <dzafman@redhat.com>
fi
ulimit -c unlimited
-for f in $(cd $location ; find . -perm $exec_mode -type f)
+for f in $(cd $location ; find . -mindepth 2 -perm $exec_mode -type f)
do
f=$(echo $f | sed 's/\.\///')
- # This is tested with misc/test-ceph-helpers.sh
- if [[ "$f" = "ceph-helpers.sh" ]]; then
- continue
- fi
if [[ "$all" = "false" ]]; then
found=false
for c in "${!select[@]}"