You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by sy...@apache.org on 2016/02/02 06:49:38 UTC

[3/6] hbase git commit: HBASE-15195 Don't run findbugs on hbase-it; it has nothing in src/main/java

HBASE-15195 Don't run findbugs on hbase-it; it has nothing in src/main/java


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

Branch: refs/heads/hbase-12439
Commit: 9955118995d4358432d7a7adbacbc687988d19da
Parents: 9ec408e
Author: stack <st...@apache.org>
Authored: Sun Jan 31 11:07:21 2016 -0400
Committer: stack <st...@apache.org>
Committed: Sun Jan 31 11:07:21 2016 -0400

----------------------------------------------------------------------
 dev-support/hbase-personality.sh | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/99551189/dev-support/hbase-personality.sh
----------------------------------------------------------------------
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 2d31fd5..d2e94e3 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -78,9 +78,12 @@ function personality_modules
 
   if [[ ${testtype} = findbugs ]]; then
     for module in ${CHANGED_MODULES}; do
-      # skip findbugs on hbase-shell
+      # skip findbugs on hbase-shell and hbase-it. hbase-it has nothing
+      # in src/main/java where findbugs goes to look
       if [[ ${module} == hbase-shell ]]; then
         continue
+      elif [[ ${module} == hbase-it ]]; then
+        continue
       else
         # shellcheck disable=SC2086
         personality_enqueue_module ${module} ${extra}