[Groonga-mysql-commit] mroonga/mariadb-sync at 90a0c6e [master] Specify suite names explicitly

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Jun 13 18:34:19 JST 2013


Kouhei Sutou	2013-06-13 18:34:19 +0900 (Thu, 13 Jun 2013)

  New Revision: 90a0c6e6dcad8fddebf0060158a062bc74ac3985
  https://github.com/mroonga/mariadb-sync/commit/90a0c6e6dcad8fddebf0060158a062bc74ac3985

  Message:
    Specify suite names explicitly

  Modified files:
    sync.sh

  Modified: sync.sh (+13 -1)
===================================================================
--- sync.sh    2013-06-13 17:31:50 +0900 (b65d06b)
+++ sync.sh    2013-06-13 18:34:19 +0900 (4c8cf58)
@@ -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
-------------- next part --------------
HTML����������������������������...
下载 



More information about the Groonga-mysql-commit mailing list
Back to archive index