HBASE-18376 Add debug logs to hbase-personality.sh to make it possible to debug this issue.
Change-Id: I172b95ed6a387ddb507abc6645a0c3aa704321fc Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/ea0062fa Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/ea0062fa Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/ea0062fa Branch: refs/heads/HBASE-14070.HLC Commit: ea0062fa54bba3c31a597e94b62f4130624b6f82 Parents: 79a702d Author: Apekshit Sharma <a...@apache.org> Authored: Fri Jul 14 12:33:25 2017 -0700 Committer: Apekshit Sharma <a...@apache.org> Committed: Fri Jul 14 12:33:42 2017 -0700 ---------------------------------------------------------------------- dev-support/hbase-personality.sh | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/ea0062fa/dev-support/hbase-personality.sh ---------------------------------------------------------------------- diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh index ae8b501..7a9ce3e 100755 --- a/dev-support/hbase-personality.sh +++ b/dev-support/hbase-personality.sh @@ -116,10 +116,13 @@ function personality_modules # tests respectively. if [[ ${testtype} = unit ]]; then extra="${extra} -PrunAllTests" + yetus_debug "EXCLUDE_TESTS_URL = ${EXCLUDE_TESTS_URL}" + yetus_debug "INCLUDE_TESTS_URL = ${INCLUDE_TESTS_URL}" if [[ -n "$EXCLUDE_TESTS_URL" ]]; then wget "$EXCLUDE_TESTS_URL" -O "excludes" if [[ $? -eq 0 ]]; then excludes=$(cat excludes) + yetus_debug "excludes=${excludes}" if [[ -n "${excludes}" ]]; then extra="${extra} -Dtest.exclude.pattern=${excludes}" fi @@ -132,6 +135,7 @@ function personality_modules wget "$INCLUDE_TESTS_URL" -O "includes" if [[ $? -eq 0 ]]; then includes=$(cat includes) + yetus_debug "includes=${includes}" if [[ -n "${includes}" ]]; then extra="${extra} -Dtest=${includes}" fi