aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests-jenkins
diff options
context:
space:
mode:
Diffstat (limited to 'dev/run-tests-jenkins')
-rwxr-xr-xdev/run-tests-jenkins8
1 files changed, 7 insertions, 1 deletions
diff --git a/dev/run-tests-jenkins b/dev/run-tests-jenkins
index 87c6715153..6a849e4f77 100755
--- a/dev/run-tests-jenkins
+++ b/dev/run-tests-jenkins
@@ -101,7 +101,13 @@ function post_message () {
function send_archived_logs () {
echo "Archiving unit tests logs..."
- local log_files=$(find . -name "unit-tests.log")
+ local log_files=$(
+ find .\
+ -name "unit-tests.log" -o\
+ -path "./sql/hive/target/HiveCompatibilitySuite.failed" -o\
+ -path "./sql/hive/target/HiveCompatibilitySuite.hiveFailed" -o\
+ -path "./sql/hive/target/HiveCompatibilitySuite.wrong"
+ )
if [ -z "$log_files" ]; then
echo "> No log files found." >&2