PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)
Signed-off-by: Josh Elser <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/93306e9e Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/93306e9e Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/93306e9e Branch: refs/heads/master Commit: 93306e9e28a0f13cbac87055c30fb9a781ae3345 Parents: 0584d3c Author: Josh Elser <[email protected]> Authored: Wed Jan 3 12:22:28 2018 -0500 Committer: Josh Elser <[email protected]> Committed: Wed Jan 3 12:34:06 2018 -0500 ---------------------------------------------------------------------- bin/phoenix_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/93306e9e/bin/phoenix_utils.py ---------------------------------------------------------------------- diff --git a/bin/phoenix_utils.py b/bin/phoenix_utils.py index 580a78b..b521277 100755 --- a/bin/phoenix_utils.py +++ b/bin/phoenix_utils.py @@ -151,7 +151,7 @@ def setPath(): global testjar testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_test_jar_path) if testjar == "": - testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, "..")) + testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, "..", 'lib')) if testjar == "": testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_class_path)
