From commits-return-66996-archive-asf-public=cust-asf.ponee.io@hbase.apache.org Sat Feb 3 19:17:55 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id E671F180621 for ; Sat, 3 Feb 2018 19:17:55 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id D61D7160C38; Sat, 3 Feb 2018 18:17:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 29FF3160C26 for ; Sat, 3 Feb 2018 19:17:55 +0100 (CET) Received: (qmail 71581 invoked by uid 500); 3 Feb 2018 18:17:54 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 71570 invoked by uid 99); 3 Feb 2018 18:17:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Feb 2018 18:17:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0903DDFF8B; Sat, 3 Feb 2018 18:17:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stack@apache.org To: commits@hbase.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-19928 TestVisibilityLabelsOnNewVersionBehaviorTable fails Date: Sat, 3 Feb 2018 18:17:54 +0000 (UTC) Repository: hbase Updated Branches: refs/heads/master 12f3c82a8 -> bfd74686c HBASE-19928 TestVisibilityLabelsOnNewVersionBehaviorTable fails Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/bfd74686 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/bfd74686 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/bfd74686 Branch: refs/heads/master Commit: bfd74686c75e8481e4662bbdc519bf4f98e9600c Parents: 12f3c82 Author: Michael Stack Authored: Sat Feb 3 10:17:16 2018 -0800 Committer: Michael Stack Committed: Sat Feb 3 10:17:40 2018 -0800 ---------------------------------------------------------------------- .../TestVisibilityLabelsOnNewVersionBehaviorTable.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/bfd74686/hbase-server/src/test/java/org/apache/hadoop/hbase/security/visibility/TestVisibilityLabelsOnNewVersionBehaviorTable.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/visibility/TestVisibilityLabelsOnNewVersionBehaviorTable.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/visibility/TestVisibilityLabelsOnNewVersionBehaviorTable.java index c14438e..d3177f9 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/visibility/TestVisibilityLabelsOnNewVersionBehaviorTable.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/visibility/TestVisibilityLabelsOnNewVersionBehaviorTable.java @@ -19,12 +19,21 @@ package org.apache.hadoop.hbase.security.visibility; import java.io.IOException; +import org.apache.hadoop.hbase.HBaseClassTestRule; import org.apache.hadoop.hbase.HColumnDescriptor; import org.apache.hadoop.hbase.HTableDescriptor; import org.apache.hadoop.hbase.TableName; import org.apache.hadoop.hbase.client.Table; +import org.apache.hadoop.hbase.testclassification.MediumTests; +import org.apache.hadoop.hbase.testclassification.SecurityTests; +import org.junit.ClassRule; +import org.junit.experimental.categories.Category; +@Category({SecurityTests.class, MediumTests.class}) public class TestVisibilityLabelsOnNewVersionBehaviorTable extends TestVisibilityLabelsWithDeletes { + @ClassRule + public static final HBaseClassTestRule CLASS_RULE = + HBaseClassTestRule.forClass(TestVisibilityLabelsOnNewVersionBehaviorTable.class); @Override protected Table createTable(HColumnDescriptor fam) throws IOException { @@ -35,5 +44,4 @@ public class TestVisibilityLabelsOnNewVersionBehaviorTable extends TestVisibilit TEST_UTIL.getHBaseAdmin().createTable(table); return TEST_UTIL.getConnection().getTable(tableName); } - }