Repository: hadoop Updated Branches: refs/heads/HADOOP-12111 8e657fba2 -> 2f801d641
HADOOP-12134. Pig personality always fails at precheck_javac and check_patch_javac (Kengo Seki via aw) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2f801d64 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2f801d64 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2f801d64 Branch: refs/heads/HADOOP-12111 Commit: 2f801d6415c1a6cadce8bc9f7c2101f2e79b4eeb Parents: 8e657fb Author: Allen Wittenauer <a...@apache.org> Authored: Mon Jun 29 11:27:09 2015 -0700 Committer: Allen Wittenauer <a...@apache.org> Committed: Mon Jun 29 11:27:09 2015 -0700 ---------------------------------------------------------------------- dev-support/personality/pig.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/2f801d64/dev-support/personality/pig.sh ---------------------------------------------------------------------- diff --git a/dev-support/personality/pig.sh b/dev-support/personality/pig.sh index 69dabf1..d01a410 100755 --- a/dev-support/personality/pig.sh +++ b/dev-support/personality/pig.sh @@ -37,21 +37,21 @@ function personality_modules case ${testtype} in findbugs) - # shellcheck disable=SC2034 + # shellcheck disable=SC2034 ANT_FINDBUGSXML="${BASEDIR}/build/test/findbugs/pig-findbugs-report.xml" extra="-Dfindbugs.home=${FINDBUGS_HOME}" ;; javac) - extra="${extra} -Djavac.args=-Xlint -Dcompile.c++=yes clean tar" + extra="${extra} -Djavac.args=-Xlint -Dcompile.c++=yes clean piggybank" ;; javadoc) extra="${extra} -Dforrest.home=${FORREST_HOME}" ;; unit) - extra="${extra} -Dtest.junit.output.format=xml -Dcompile.c++=yes -Dtest.output=yes test-core" + extra="${extra} -Dtest.junit.output.format=xml -Dcompile.c++=yes -Dtest.output=yes test-core" ;; esac - # shellcheck disable=SC2086 + # shellcheck disable=SC2086 personality_enqueue_module . ${extra} }