From eb23e112c19b84a3389f750b0290e1e8c65077f9 Mon Sep 17 00:00:00 2001 From: starlord Date: Sun, 29 Sep 2019 14:33:01 +0800 Subject: [PATCH] fix code coverage error Former-commit-id: 9242dca4a2cd1eef432b4d4d5eb6da10efff9935 --- cpp/coverage.sh | 6 +++--- cpp/src/db/meta/MySQLConnectionPool.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/coverage.sh b/cpp/coverage.sh index 84459fcc..c0defe6f 100755 --- a/cpp/coverage.sh +++ b/cpp/coverage.sh @@ -70,11 +70,11 @@ fi for test in `ls ${DIR_UNITTEST}`; do echo $test case ${test} in - db_test) - # set run args for db_test + test_db) + # set run args for test_db args="mysql://${MYSQL_USER_NAME}:${MYSQL_PASSWORD}@${MYSQL_HOST}:${MYSQL_PORT}/${MYSQL_DB_NAME}" ;; - *_test) + *test_*) args="" ;; esac diff --git a/cpp/src/db/meta/MySQLConnectionPool.h b/cpp/src/db/meta/MySQLConnectionPool.h index 1b5345c7..9c6b751d 100644 --- a/cpp/src/db/meta/MySQLConnectionPool.h +++ b/cpp/src/db/meta/MySQLConnectionPool.h @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -#include "mysql++/mysql++.h" +#include #include #include -- GitLab