You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ta...@apache.org on 2016/04/12 23:19:01 UTC

[27/50] incubator-impala git commit: Log EE XUnit test result in IMPALA_HOME/logs/ee_tests/results.

Log EE XUnit test result in IMPALA_HOME/logs/ee_tests/results.

I had missed this in my original logs consolidation patch.

This change is needed for Jenkins to pick up the EE test results
for reporting purposes.

Change-Id: I58e6a4a6392223de87ea2ce50a36dd35cafa5b86
Reviewed-on: http://gerrit.cloudera.org:8080/2667
Reviewed-by: Alex Behm <al...@cloudera.com>
Tested-by: Internal Jenkins


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

Branch: refs/heads/master
Commit: 3f2840f52869aacaefe840efbbeb9130fb083541
Parents: 2cbd327
Author: Alex Behm <al...@cloudera.com>
Authored: Wed Mar 30 11:24:14 2016 -0700
Committer: Internal Jenkins <cl...@gerrit.cloudera.org>
Committed: Fri Apr 1 12:26:02 2016 +0000

----------------------------------------------------------------------
 tests/run-tests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3f2840f5/tests/run-tests.py
----------------------------------------------------------------------
diff --git a/tests/run-tests.py b/tests/run-tests.py
index b76b4e7..815f83b 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -27,7 +27,7 @@ VALID_TEST_DIRS = ['failure', 'query_test', 'stress', 'unittests', 'aux_query_te
                    'statestore']
 
 TEST_DIR = os.path.join(os.environ['IMPALA_HOME'], 'tests')
-TEST_RESULT_DIR = os.path.join(TEST_DIR, 'results')
+TEST_RESULT_DIR = os.path.join(os.environ['IMPALA_EE_TEST_LOGS_DIR'], 'results')
 
 # Arguments that control output logging. If additional default arguments are needed they
 # should go in the pytest.ini file.