1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

ctdb-tests: Drop use of array in run_tests()

This doesn't accomplish anything.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
This commit is contained in:
Martin Schwenke 2019-09-09 15:01:49 +10:00 committed by Amitay Isaacs
parent c438e0db45
commit 384381fbff

View File

@ -224,11 +224,9 @@ run_one_test ()
run_tests ()
{
local tests=("$@")
local f
for f in "${tests[@]}" ; do
for f ; do
case "$f" in
*/README|*/README.md)
continue