[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-12 Thread Peter Vary (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15419712#comment-15419712
 ] 

Peter Vary commented on HIVE-1:
---

Lets see what could we do about the BeeLine driver,  and when we know the 
possibilities, maybe problems, then we discuss them on the dev list.

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-12 Thread Ashutosh Chauhan (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15419699#comment-15419699
 ] 

Ashutosh Chauhan commented on HIVE-1:
-

+1 for this current patch.

[~pvary] I agree now that cli is deprecated, we should migrate our tests to 
beeline. It will be good to discuss this on dev@hive since folks may have 
opinion on what path we should take for this.

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-12 Thread Peter Vary (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15419671#comment-15419671
 ] 

Peter Vary commented on HIVE-1:
---

I am only concerned about the end results, and not really about the steps which 
are leading there. So if you agree, after you commit the patch then I will 
incorporate the stuff I proposed in the review. Of course I would like you both 
to review my patch.

Regarding of the BeeLine testcases, I think we should check the HIVE-4161. It 
was reported be [~thejas] a log time ago, and it was about to creating a small 
subset of the test cases which should use BeeLine for testing Hive. The funny 
thing is, that it was only partially solved - with the result of removing every 
single BeeLine tests in the end, and we are still waiting for someone to create 
some BeeLine tests package.

On the other hand, in this document we stated, that the HiveCLI is deprecated, 
and the users should use BeeLine instead 
(https://cwiki.apache.org/confluence/display/Hive/Replacing+the+Implementation+of+Hive+CLI+Using+Beeline)

I think with that in mind, in the medium term we should consider to migrate the 
integration test cases to BeeLine. The exact method and steps is up for 
discussion. Maybe the first thing would be to create the working TestBeeLine 
testcase for several chosen queries from the existing mix, and with that check 
the viability of the idea. It this is possible we might consider running the 
testcases parallel. This has serious risks, but can have a huge impact on the 
overall runtime of the tests.

I do not think I could like to create a patch independently of this one to make 
the BeeLine testcases working. What I did do to be able to run the alter3.q 
testcase query on my laptop is some trivial refactoring, and the following 
almost trivial changes:
{noformat}
diff --git beeline/src/java/org/apache/hive/beeline/util/QFileClient.java 
beeline/src/java/org/apache/hive/beeline/util/QFileClient.java
index 81f1b0e..44b9ca5 100644
--- beeline/src/java/org/apache/hive/beeline/util/QFileClient.java
+++ beeline/src/java/org/apache/hive/beeline/util/QFileClient.java
@@ -125,6 +125,7 @@ void initFilterSet() {
 .addFilter(outputDirectory.toString(), "!!{outputDirectory}!!")
 .addFilter(qFileDirectory.toString(), "!!{qFileDirectory}!!")
 .addFilter(hiveRootDirectory.toString(), "!!{hive.root}!!")
+.addFilter("\\(queryId=[^\\)]*\\)","queryId=(!!{queryId}!!)")
 .addFilter("file:/\\w\\S+", "file:/!!ELIDED!!")
 .addFilter("pfile:/\\w\\S+", "pfile:/!!ELIDED!!")
 .addFilter("hdfs:/\\w\\S+", "hdfs:/!!ELIDED!!")
@@ -134,6 +135,7 @@ void initFilterSet() {
 .addFilter("(\\D)" + currentTimePrefix + "\\d{9}(\\D)", 
"$1!!UNIXTIMEMILLIS!!$2")
 .addFilter(userName, "!!{user.name}!!")
 .addFilter(operatorPattern, "\"$1_!!ELIDED!!\"")
+.addFilter("Time taken: [0-9\\.]* seconds", "Time taken: !!ELIDED!! 
seconds")
 ;
   };
{noformat}

With that I think we will have a more or less working testdriver for BeeLine 
testcase, on which we can improve on.

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-12 Thread Ashutosh Chauhan (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15419419#comment-15419419
 ] 

Ashutosh Chauhan commented on HIVE-1:
-

Sounds fine to me. [~pvary] What do you think?

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-12 Thread Zoltan Haindrich (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15419105#comment-15419105
 ] 

Zoltan Haindrich commented on HIVE-1:
-

[~ashutoshc] I think this improves the situation quite a bit - and I think 
[~pvary] doesn't want that this solution to be final...I agree with him...but I 
don't want pump many more things into this patch; and I really don't wanted to 
change more than needed to remove these vm files - the current method mimics 
the old-one...which should be safe for now.

[~pvary] I think it would be the best to migrate all the remaining vm 
files...cover up lose ends...like why accumulo/beeline not executed at all, 
hbasecli why executes only a single test...and continue with qtestutil 
refactoring into junit rules...and then remove/refactor these things: I guess 
that then after that there wouldn't be this much need for these 'drivers' 
anymore...

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-12 Thread Ashutosh Chauhan (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15419081#comment-15419081
 ] 

Ashutosh Chauhan commented on HIVE-1:
-

Peter has given a good feedback on RB. I think it will be good to address those 
so that everyone is on same page w.r.t end state of this effort. [~kgyrtkirk] 
Would you like to incorporate that feedback in current patch? Alternatively, we 
can check in this patch as its a good milestone we have achieved (no more 
velocity templates, yay) and then [~pvary] can work on a follow-up with 
improvements he has suggested. What do you guys think?

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-12 Thread Zoltan Haindrich (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15418413#comment-15418413
 ] 

Zoltan Haindrich commented on HIVE-1:
-

[~ashutoshc] what do you think about these changes?

I have experimented with adding some extra property setters...and I think 
executing "simple" qtests (like combine2.q) is near.

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-08 Thread Zoltan Haindrich (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15412981#comment-15412981
 ] 

Zoltan Haindrich commented on HIVE-1:
-

[~ashutoshc] of course...i've forgot to add the link:
https://reviews.apache.org/r/50906/

i've looked into the testresults...i think its ok: there are one less tests 
overall - the cause of this is the removal of TestPerfCliDriver / shutdown 
method.

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-08 Thread Ashutosh Chauhan (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15412918#comment-15412918
 ] 

Ashutosh Chauhan commented on HIVE-1:
-

Can you create RB for this?

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-08 Thread Hive QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15412830#comment-15412830
 ] 

Hive QA commented on HIVE-1:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12822695/HIVE-1.4.patch

{color:green}SUCCESS:{color} +1 due to 20 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 4 failed/errored test(s), 10440 tests 
executed
*Failed tests:*
{noformat}
TestMsgBusConnection - did not produce a TEST-*.xml file
TestQueryLifeTimeHook - did not produce a TEST-*.xml file
org.apache.hive.jdbc.TestJdbcWithMiniHS2.testAddJarConstructorUnCaching
org.apache.hive.spark.client.TestSparkClient.testJobSubmission
{noformat}

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-MASTER-Build/824/testReport
Console output: 
https://builds.apache.org/job/PreCommit-HIVE-MASTER-Build/824/console
Test logs: 
http://ec2-204-236-174-241.us-west-1.compute.amazonaws.com/logs/PreCommit-HIVE-MASTER-Build-824/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 4 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12822695 - PreCommit-HIVE-MASTER-Build

> Upgrade qtest execution framework to junit4 - migrate most of them
> --
>
> Key: HIVE-1
> URL: https://issues.apache.org/jira/browse/HIVE-1
> Project: Hive
>  Issue Type: Sub-task
>  Components: Tests
>Reporter: Zoltan Haindrich
>Assignee: Zoltan Haindrich
> Attachments: HIVE-1.1.patch, HIVE-1.2.patch, 
> HIVE-1.3.patch, HIVE-1.4.patch
>
>
> this is the second step..migrating all exiting qtestgen generated tests to 
> junit4
> it might be possible that not all will get migrated in this ticket...I will 
> leave out the problematic ones...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-07 Thread Hive QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15411166#comment-15411166
 ] 

Hive QA commented on HIVE-1:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12822486/HIVE-1.2.patch

{color:green}SUCCESS:{color} +1 due to 21 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 45 failed/errored test(s), 10389 tests 
executed
*Failed tests:*
{noformat}
TestMinimrCliDriver-bucket_num_reducers.q-schemeAuthority2.q-scriptfile1.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-external_table_with_space_in_location_path.q-bucketmapjoin6.q-temp_table_external.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-groupby2.q-bucket6.q-input16_cc.q-and-1-more - did not 
produce a TEST-*.xml file
TestMinimrCliDriver-import_exported_table.q-file_with_header_footer.q-orc_mr_pathalias.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-infer_bucket_sort_num_buckets.q-index_bitmap3.q-join1.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-infer_bucket_sort_reducers_power_two.q-scriptfile1_win.q-bucketmapjoin7.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-insert_dir_distcp.q-non_native_window_udf.q-infer_bucket_sort_merge.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-leftsemijoin_mr.q-infer_bucket_sort_map_operators.q-bucket4.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-list_bucket_dml_10.q-orc_merge_diff_fs.q-skewjoin_onesideskew.q
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-load_fs2.q-root_dir_external_table.q-join_acid_non_acid.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-parallel_orderby.q-bucketizedhiveinputformat.q-index_bitmap_auto.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-reduce_deduplicate.q-disable_merge_for_bucketing.q-load_hdfs_file_with_space_in_the_name.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-table_nonprintable.q-infer_bucket_sort_bucketed_table.q-uber_reduce.q-and-1-more
 - did not produce a TEST-*.xml file
TestMsgBusConnection - did not produce a TEST-*.xml file
TestQueryLifeTimeHook - did not produce a TEST-*.xml file
org.apache.hadoop.hive.cli.TestContribCliDriver.testCliDriver[dboutput]
org.apache.hadoop.hive.cli.TestContribCliDriver.testCliDriver[serde_typedbytes5]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[ambiguous_join_col]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[duplicate_alias]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[garbage]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[insert_wrong_number_columns]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[invalid_create_table]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[invalid_dot]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[invalid_function_param2]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[invalid_index]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[invalid_select]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[macro_reserved_word]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[missing_overwrite]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[nonkey_groupby]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[quoted_string]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_column1]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_column2]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_column3]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_column4]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_column5]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_column6]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_function1]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_function2]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_function3]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_function4]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_table1]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[unknown_table2]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[wrong_distinct1]
org.apache.hadoop.hive.ql.parse.TestParseNegativeDriver.testCliDriver[wrong_distinct2]
org.apache.hive.jdbc.TestJdbcWithMiniHS2.testAddJarConstructorUnCaching
{noformat}


[jira] [Commented] (HIVE-14444) Upgrade qtest execution framework to junit4 - migrate most of them

2016-08-07 Thread Hive QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15410932#comment-15410932
 ] 

Hive QA commented on HIVE-1:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12822466/HIVE-1.1.patch

{color:green}SUCCESS:{color} +1 due to 20 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 832 failed/errored test(s), 10386 tests 
executed
*Failed tests:*
{noformat}
TestMinimrCliDriver-bucket_num_reducers.q-schemeAuthority2.q-scriptfile1.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-external_table_with_space_in_location_path.q-bucketmapjoin6.q-temp_table_external.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-groupby2.q-bucket6.q-input16_cc.q-and-1-more - did not 
produce a TEST-*.xml file
TestMinimrCliDriver-import_exported_table.q-file_with_header_footer.q-orc_mr_pathalias.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-infer_bucket_sort_num_buckets.q-index_bitmap3.q-join1.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-infer_bucket_sort_reducers_power_two.q-scriptfile1_win.q-bucketmapjoin7.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-insert_dir_distcp.q-non_native_window_udf.q-infer_bucket_sort_merge.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-leftsemijoin_mr.q-infer_bucket_sort_map_operators.q-bucket4.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-list_bucket_dml_10.q-orc_merge_diff_fs.q-skewjoin_onesideskew.q
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-load_fs2.q-root_dir_external_table.q-join_acid_non_acid.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-parallel_orderby.q-bucketizedhiveinputformat.q-index_bitmap_auto.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-reduce_deduplicate.q-disable_merge_for_bucketing.q-load_hdfs_file_with_space_in_the_name.q-and-1-more
 - did not produce a TEST-*.xml file
TestMinimrCliDriver-table_nonprintable.q-infer_bucket_sort_bucketed_table.q-uber_reduce.q-and-1-more
 - did not produce a TEST-*.xml file
TestMsgBusConnection - did not produce a TEST-*.xml file
TestQueryLifeTimeHook - did not produce a TEST-*.xml file
org.apache.hadoop.hive.cli.TestBeeLineDriver.initializationError
org.apache.hadoop.hive.cli.TestContribCliDriver.testCliDriver[dboutput]
org.apache.hadoop.hive.cli.TestContribCliDriver.testCliDriver[serde_typedbytes5]
org.apache.hadoop.hive.cli.TestEncryptedHDFSCliDriver.testCliDriver[encryption_drop_table]
org.apache.hadoop.hive.cli.TestEncryptedHDFSCliDriver.testCliDriver[encryption_join_unencrypted_tbl]
org.apache.hadoop.hive.cli.TestEncryptedHDFSCliDriver.testCliDriver[encryption_move_tbl]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[acid_overwrite]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[add_partition_with_whitelist]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[addpart1]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_concatenate_indexed_table]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_external_acid]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_file_format]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_non_native]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_partition_change_col_dup_col]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_partition_change_col_nonexist]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_partition_coltype_2columns]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_partition_coltype_invalidcolname]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_partition_coltype_invalidtype]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_partition_partial_spec_dyndisabled]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_partition_with_whitelist]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_rename_partition_failure2]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_rename_partition_failure3]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_rename_partition_failure]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_table_add_partition]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_table_constraint_duplicate_pk]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_table_constraint_invalid_fk_col1]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_table_constraint_invalid_fk_col2]
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[alter_table_constraint_invalid_fk_tbl1]