This is an automated email from the ASF dual-hosted git repository. lihaopeng pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 2053380ebbf [fix](be-ut) Fix annoying error message when using run-be-ut.sh (#34728) 2053380ebbf is described below commit 2053380ebbfa2be866d0f6c229419c3e515c4e76 Author: zhiqiang <seuhezhiqi...@163.com> AuthorDate: Sun May 12 06:22:58 2024 +0800 [fix](be-ut) Fix annoying error message when using run-be-ut.sh (#34728) --- run-be-ut.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-be-ut.sh b/run-be-ut.sh index f9fcf9e9d53..453cd5d397a 100755 --- a/run-be-ut.sh +++ b/run-be-ut.sh @@ -276,7 +276,7 @@ rm -f "${UDF_RUNTIME_DIR}"/* # clean all gcda file while read -r gcda_file; do rm "${gcda_file}" -done < <(find "${DORIS_TEST_BINARY_DIR}" -name "*gcda") +done < <(find "${CMAKE_BUILD_DIR}" -name "*gcda") # prepare gtest output dir GTEST_OUTPUT_DIR="${CMAKE_BUILD_DIR}/gtest_output" --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org