Navigation Menu

Skip to content

Commit

Permalink
Specify suite names explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 13, 2013
1 parent b07a7cc commit 90a0c6e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion sync.sh
Expand Up @@ -143,11 +143,23 @@ build()
run_test()
{
cd "${mroonga_branch_dir}/mysql-test"

all_test_suite_names=""
cd "suite"
for test_suite_name in $(find mroonga -type d '!' -name '[tr]'); do
if [ -n "${all_test_suite_names}" ]; then
all_test_suite_names="${all_test_suite_names},"
fi
all_test_suite_names="${all_test_suite_names}${test_suite_name}"
done
cd -

./mysql-test-run \
--parallel=${n_processors} \
--no-check-testcases \
--retry=1 \
--force
--force \
--suite="${all_test_suite_names}"
}

setup_repositories
Expand Down

0 comments on commit 90a0c6e

Please sign in to comment.