You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by tm...@apache.org on 2018/05/29 21:50:38 UTC

impala git commit: IMPALA-7089: xfail test_kudu_dml_reporting

Repository: impala
Updated Branches:
  refs/heads/master 573550ca2 -> e66014967


IMPALA-7089: xfail test_kudu_dml_reporting

test_kudu_dml_reporting has been causing a large number of build
failures. Temporarily disable it while we figure out what's going on.

Also improve output of test_kudu_dml_reporting on failure.

Change-Id: I222e4c86a50f2450201fbad8b937e8fcf4fac31d
Reviewed-on: http://gerrit.cloudera.org:8080/10527
Reviewed-by: Joe McDonnell <jo...@cloudera.com>
Tested-by: Impala Public Jenkins <im...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/impala/commit/e6601496
Tree: http://git-wip-us.apache.org/repos/asf/impala/tree/e6601496
Diff: http://git-wip-us.apache.org/repos/asf/impala/diff/e6601496

Branch: refs/heads/master
Commit: e660149670e7d2d18b74a6eb3bc06cb929887ca1
Parents: 573550c
Author: Thomas Tauber-Marshall <tm...@cloudera.com>
Authored: Tue May 29 10:50:44 2018 -0700
Committer: Impala Public Jenkins <im...@cloudera.com>
Committed: Tue May 29 21:49:35 2018 +0000

----------------------------------------------------------------------
 tests/shell/test_shell_commandline.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/impala/blob/e6601496/tests/shell/test_shell_commandline.py
----------------------------------------------------------------------
diff --git a/tests/shell/test_shell_commandline.py b/tests/shell/test_shell_commandline.py
index a3eea7f..9892c15 100644
--- a/tests/shell/test_shell_commandline.py
+++ b/tests/shell/test_shell_commandline.py
@@ -577,9 +577,10 @@ class TestImpalaShell(ImpalaTestSuite):
     results = run_impala_shell_cmd('--query="%s"' % (stmt))
     expected_output = "Modified %d row(s), %d row error(s)" %\
         (expected_rows_modified, expected_row_errors)
-    assert expected_output in results.stderr
+    assert expected_output in results.stderr, results.stderr
 
   @SkipIf.kudu_not_supported
+  @pytest.mark.xfail(reason='IMPALA-7089')
   def test_kudu_dml_reporting(self, unique_database):
     db = unique_database
     run_impala_shell_cmd('--query="create table %s.dml_test (id int primary key, '\