HBASE-4737 Addendum removes unnecessary print
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1200138 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f5944d1a72
commit
076030550f
|
@ -61,21 +61,14 @@ public class TestSplitTransaction {
|
||||||
private static final byte [] GOOD_SPLIT_ROW = new byte [] {'d', 'd', 'd'};
|
private static final byte [] GOOD_SPLIT_ROW = new byte [] {'d', 'd', 'd'};
|
||||||
private static final byte [] CF = HConstants.CATALOG_FAMILY;
|
private static final byte [] CF = HConstants.CATALOG_FAMILY;
|
||||||
|
|
||||||
static {
|
|
||||||
System.out.println("AAAA static");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Before public void setup() throws IOException {
|
@Before public void setup() throws IOException {
|
||||||
System.out.println("AAAA setup");
|
|
||||||
this.fs = FileSystem.get(TEST_UTIL.getConfiguration());
|
this.fs = FileSystem.get(TEST_UTIL.getConfiguration());
|
||||||
this.fs.delete(this.testdir, true);
|
this.fs.delete(this.testdir, true);
|
||||||
this.wal = new HLog(fs, new Path(this.testdir, "logs"),
|
this.wal = new HLog(fs, new Path(this.testdir, "logs"),
|
||||||
new Path(this.testdir, "archive"),
|
new Path(this.testdir, "archive"),
|
||||||
TEST_UTIL.getConfiguration());
|
TEST_UTIL.getConfiguration());
|
||||||
System.out.println("AAAA setup createRegion");
|
|
||||||
this.parent = createRegion(this.testdir, this.wal);
|
this.parent = createRegion(this.testdir, this.wal);
|
||||||
TEST_UTIL.getConfiguration().setBoolean("hbase.testing.nocluster", true);
|
TEST_UTIL.getConfiguration().setBoolean("hbase.testing.nocluster", true);
|
||||||
System.out.println("AAAA setup ends");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@After public void teardown() throws IOException {
|
@After public void teardown() throws IOException {
|
||||||
|
@ -89,7 +82,6 @@ public class TestSplitTransaction {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test public void testFailAfterPONR() throws IOException, KeeperException {
|
@Test public void testFailAfterPONR() throws IOException, KeeperException {
|
||||||
System.out.println("AAAA testFailAfterPONR");
|
|
||||||
final int rowcount = TEST_UTIL.loadRegion(this.parent, CF);
|
final int rowcount = TEST_UTIL.loadRegion(this.parent, CF);
|
||||||
assertTrue(rowcount > 0);
|
assertTrue(rowcount > 0);
|
||||||
int parentRowCount = countRows(this.parent);
|
int parentRowCount = countRows(this.parent);
|
||||||
|
|
Loading…
Reference in New Issue