[01/15] hbase git commit: HBASE-21547 Precommit uses master flaky list for other branches [Forced Update!]

2019-01-03 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/HBASE-21512 44462a48e -> 04e6909ad (forced update)


HBASE-21547 Precommit uses master flaky list for other branches

Signed-off-by: Sean Busbey 


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

Branch: refs/heads/HBASE-21512
Commit: f0b50a8f9b6db266c1e0f307fda6a4ad7b852135
Parents: ec948f5
Author: Peter Somogyi 
Authored: Fri Dec 28 15:16:48 2018 +0100
Committer: Peter Somogyi 
Committed: Wed Jan 2 08:26:57 2019 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/f0b50a8f/dev-support/hbase-personality.sh
--
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 3856a29..8dd24be 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -272,6 +272,20 @@ function get_include_exclude_tests_arg
 yetus_error "Wget error $? in fetching includes file from url" \
  "${INCLUDE_TESTS_URL}. Ignoring and proceeding."
   fi
+  else
+# Use branch specific exclude list when EXCLUDE_TESTS_URL and 
INCLUDE_TESTS_URL are empty
+
FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/;
+if wget "${FLAKY_URL}" -O "excludes"; then
+  excludes=$(cat excludes)
+yetus_debug "excludes=${excludes}"
+if [[ -n "${excludes}" ]]; then
+  eval "${__resultvar}='-Dtest.exclude.pattern=${excludes}'"
+fi
+rm excludes
+  else
+yetus_error "Wget error $? in fetching excludes file from url" \
+ "${FLAKY_URL}. Ignoring and proceeding."
+  fi
   fi
 }
 



hbase git commit: HBASE-21547 Precommit uses master flaky list for other branches

2019-01-02 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 cdc40767e -> 2ef33e151


HBASE-21547 Precommit uses master flaky list for other branches

Signed-off-by: Sean Busbey 


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

Branch: refs/heads/branch-1.2
Commit: 2ef33e1515dcbc2b23c05edb3e41478b0421654c
Parents: cdc4076
Author: Peter Somogyi 
Authored: Fri Dec 28 15:16:48 2018 +0100
Committer: Peter Somogyi 
Committed: Wed Jan 2 08:55:39 2019 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/2ef33e15/dev-support/hbase-personality.sh
--
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 3c52dae..b05f76f 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -255,6 +255,20 @@ function get_include_exclude_tests_arg
 yetus_error "Wget error $? in fetching includes file from url" \
  "${INCLUDE_TESTS_URL}. Ignoring and proceeding."
   fi
+  else
+# Use branch specific exclude list when EXCLUDE_TESTS_URL and 
INCLUDE_TESTS_URL are empty
+
FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/;
+if wget "${FLAKY_URL}" -O "excludes"; then
+  excludes=$(cat excludes)
+yetus_debug "excludes=${excludes}"
+if [[ -n "${excludes}" ]]; then
+  eval "${__resultvar}='-Dtest.exclude.pattern=${excludes}'"
+fi
+rm excludes
+  else
+yetus_error "Wget error $? in fetching excludes file from url" \
+ "${FLAKY_URL}. Ignoring and proceeding."
+  fi
   fi
 }
 



hbase git commit: HBASE-21547 Precommit uses master flaky list for other branches

2019-01-02 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/branch-1 beeb0796e -> f9afd9254


HBASE-21547 Precommit uses master flaky list for other branches

Signed-off-by: Sean Busbey 


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

Branch: refs/heads/branch-1
Commit: f9afd925482a662033fbe959ab746f1f0ea1a7e1
Parents: beeb079
Author: Peter Somogyi 
Authored: Fri Dec 28 15:16:48 2018 +0100
Committer: Peter Somogyi 
Committed: Wed Jan 2 08:41:46 2019 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/f9afd925/dev-support/hbase-personality.sh
--
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 93727b3..7f930d0 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -259,6 +259,20 @@ function get_include_exclude_tests_arg
 yetus_error "Wget error $? in fetching includes file from url" \
  "${INCLUDE_TESTS_URL}. Ignoring and proceeding."
   fi
+  else
+# Use branch specific exclude list when EXCLUDE_TESTS_URL and 
INCLUDE_TESTS_URL are empty
+
FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/;
+if wget "${FLAKY_URL}" -O "excludes"; then
+  excludes=$(cat excludes)
+yetus_debug "excludes=${excludes}"
+if [[ -n "${excludes}" ]]; then
+  eval "${__resultvar}='-Dtest.exclude.pattern=${excludes}'"
+fi
+rm excludes
+  else
+yetus_error "Wget error $? in fetching excludes file from url" \
+ "${FLAKY_URL}. Ignoring and proceeding."
+  fi
   fi
 }
 



hbase git commit: HBASE-21547 Precommit uses master flaky list for other branches

2019-01-02 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/branch-1.4 f7470a8b5 -> 928baae11


HBASE-21547 Precommit uses master flaky list for other branches

Signed-off-by: Sean Busbey 


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

Branch: refs/heads/branch-1.4
Commit: 928baae115f90c9beabeceeb0ed41db4afec29b0
Parents: f7470a8
Author: Peter Somogyi 
Authored: Fri Dec 28 15:16:48 2018 +0100
Committer: Peter Somogyi 
Committed: Wed Jan 2 08:43:24 2019 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/928baae1/dev-support/hbase-personality.sh
--
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 6c99839..705d775 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -259,6 +259,20 @@ function get_include_exclude_tests_arg
 yetus_error "Wget error $? in fetching includes file from url" \
  "${INCLUDE_TESTS_URL}. Ignoring and proceeding."
   fi
+  else
+# Use branch specific exclude list when EXCLUDE_TESTS_URL and 
INCLUDE_TESTS_URL are empty
+
FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/;
+if wget "${FLAKY_URL}" -O "excludes"; then
+  excludes=$(cat excludes)
+yetus_debug "excludes=${excludes}"
+if [[ -n "${excludes}" ]]; then
+  eval "${__resultvar}='-Dtest.exclude.pattern=${excludes}'"
+fi
+rm excludes
+  else
+yetus_error "Wget error $? in fetching excludes file from url" \
+ "${FLAKY_URL}. Ignoring and proceeding."
+  fi
   fi
 }
 



hbase git commit: HBASE-21547 Precommit uses master flaky list for other branches

2019-01-01 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/branch-2.1 1dfc418f7 -> 8923b0e17


HBASE-21547 Precommit uses master flaky list for other branches

Signed-off-by: Sean Busbey 


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

Branch: refs/heads/branch-2.1
Commit: 8923b0e170876dbc9595629a0fd3403fd8308003
Parents: 1dfc418
Author: Peter Somogyi 
Authored: Fri Dec 28 15:16:48 2018 +0100
Committer: Peter Somogyi 
Committed: Wed Jan 2 08:34:58 2019 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/8923b0e1/dev-support/hbase-personality.sh
--
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index ac2f60b..00ccb45 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -271,6 +271,20 @@ function get_include_exclude_tests_arg
 yetus_error "Wget error $? in fetching includes file from url" \
  "${INCLUDE_TESTS_URL}. Ignoring and proceeding."
   fi
+  else
+# Use branch specific exclude list when EXCLUDE_TESTS_URL and 
INCLUDE_TESTS_URL are empty
+
FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/;
+if wget "${FLAKY_URL}" -O "excludes"; then
+  excludes=$(cat excludes)
+yetus_debug "excludes=${excludes}"
+if [[ -n "${excludes}" ]]; then
+  eval "${__resultvar}='-Dtest.exclude.pattern=${excludes}'"
+fi
+rm excludes
+  else
+yetus_error "Wget error $? in fetching excludes file from url" \
+ "${FLAKY_URL}. Ignoring and proceeding."
+  fi
   fi
 }
 



hbase git commit: HBASE-21547 Precommit uses master flaky list for other branches

2019-01-01 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 205e39c57 -> c2c38a637


HBASE-21547 Precommit uses master flaky list for other branches

Signed-off-by: Sean Busbey 


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

Branch: refs/heads/branch-2.0
Commit: c2c38a63708415cb4258206ab29f1dd84f3c5875
Parents: 205e39c
Author: Peter Somogyi 
Authored: Fri Dec 28 15:16:48 2018 +0100
Committer: Peter Somogyi 
Committed: Wed Jan 2 08:38:36 2019 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/c2c38a63/dev-support/hbase-personality.sh
--
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 7192041..ba5bc37 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -259,6 +259,20 @@ function get_include_exclude_tests_arg
 yetus_error "Wget error $? in fetching includes file from url" \
  "${INCLUDE_TESTS_URL}. Ignoring and proceeding."
   fi
+  else
+# Use branch specific exclude list when EXCLUDE_TESTS_URL and 
INCLUDE_TESTS_URL are empty
+
FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/;
+if wget "${FLAKY_URL}" -O "excludes"; then
+  excludes=$(cat excludes)
+yetus_debug "excludes=${excludes}"
+if [[ -n "${excludes}" ]]; then
+  eval "${__resultvar}='-Dtest.exclude.pattern=${excludes}'"
+fi
+rm excludes
+  else
+yetus_error "Wget error $? in fetching excludes file from url" \
+ "${FLAKY_URL}. Ignoring and proceeding."
+  fi
   fi
 }
 



hbase git commit: HBASE-21547 Precommit uses master flaky list for other branches

2019-01-01 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/branch-2 ba9a49b8a -> 0b086087b


HBASE-21547 Precommit uses master flaky list for other branches

Signed-off-by: Sean Busbey 


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

Branch: refs/heads/branch-2
Commit: 0b086087b26eabd85bd1c47a1f62338608d7532a
Parents: ba9a49b
Author: Peter Somogyi 
Authored: Fri Dec 28 15:16:48 2018 +0100
Committer: Peter Somogyi 
Committed: Wed Jan 2 08:31:06 2019 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/0b086087/dev-support/hbase-personality.sh
--
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index ac2f60b..00ccb45 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -271,6 +271,20 @@ function get_include_exclude_tests_arg
 yetus_error "Wget error $? in fetching includes file from url" \
  "${INCLUDE_TESTS_URL}. Ignoring and proceeding."
   fi
+  else
+# Use branch specific exclude list when EXCLUDE_TESTS_URL and 
INCLUDE_TESTS_URL are empty
+
FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/;
+if wget "${FLAKY_URL}" -O "excludes"; then
+  excludes=$(cat excludes)
+yetus_debug "excludes=${excludes}"
+if [[ -n "${excludes}" ]]; then
+  eval "${__resultvar}='-Dtest.exclude.pattern=${excludes}'"
+fi
+rm excludes
+  else
+yetus_error "Wget error $? in fetching excludes file from url" \
+ "${FLAKY_URL}. Ignoring and proceeding."
+  fi
   fi
 }
 



hbase git commit: HBASE-21547 Precommit uses master flaky list for other branches

2019-01-01 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/master ec948f5d9 -> f0b50a8f9


HBASE-21547 Precommit uses master flaky list for other branches

Signed-off-by: Sean Busbey 


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

Branch: refs/heads/master
Commit: f0b50a8f9b6db266c1e0f307fda6a4ad7b852135
Parents: ec948f5
Author: Peter Somogyi 
Authored: Fri Dec 28 15:16:48 2018 +0100
Committer: Peter Somogyi 
Committed: Wed Jan 2 08:26:57 2019 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/f0b50a8f/dev-support/hbase-personality.sh
--
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 3856a29..8dd24be 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -272,6 +272,20 @@ function get_include_exclude_tests_arg
 yetus_error "Wget error $? in fetching includes file from url" \
  "${INCLUDE_TESTS_URL}. Ignoring and proceeding."
   fi
+  else
+# Use branch specific exclude list when EXCLUDE_TESTS_URL and 
INCLUDE_TESTS_URL are empty
+
FLAKY_URL="https://builds.apache.org/job/HBase-Find-Flaky-Tests/job/${PATCH_BRANCH}/lastSuccessfulBuild/artifact/excludes/;
+if wget "${FLAKY_URL}" -O "excludes"; then
+  excludes=$(cat excludes)
+yetus_debug "excludes=${excludes}"
+if [[ -n "${excludes}" ]]; then
+  eval "${__resultvar}='-Dtest.exclude.pattern=${excludes}'"
+fi
+rm excludes
+  else
+yetus_error "Wget error $? in fetching excludes file from url" \
+ "${FLAKY_URL}. Ignoring and proceeding."
+  fi
   fi
 }