Repository: accumulo Updated Branches: refs/heads/1.6 3f7f68149 -> 7b7b468f9 refs/heads/master caddad0e9 -> af3d11c43
ACCUMULO-3213 Enable GC_FILE_ARCHIVE in MAC properties for ITs. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/7b7b468f Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/7b7b468f Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/7b7b468f Branch: refs/heads/1.6 Commit: 7b7b468f90162446e4ede935b7054ec40ebc96a3 Parents: 3f7f681 Author: Josh Elser <els...@apache.org> Authored: Sat Nov 1 15:56:06 2014 -0400 Committer: Josh Elser <els...@apache.org> Committed: Sat Nov 1 15:56:06 2014 -0400 ---------------------------------------------------------------------- .../java/org/apache/accumulo/test/functional/ConfigurableMacIT.java | 1 + .../test/java/org/apache/accumulo/test/functional/SimpleMacIT.java | 1 + 2 files changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/7b7b468f/test/src/test/java/org/apache/accumulo/test/functional/ConfigurableMacIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/ConfigurableMacIT.java b/test/src/test/java/org/apache/accumulo/test/functional/ConfigurableMacIT.java index 0d0e047..9185e1b 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/ConfigurableMacIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/ConfigurableMacIT.java @@ -69,6 +69,7 @@ public class ConfigurableMacIT extends AbstractMacIT { // createTestDir will give us a empty directory, we don't need to clean it up ourselves MiniAccumuloConfigImpl cfg = new MiniAccumuloConfigImpl(createTestDir(this.getClass().getName() + "_" + this.testName.getMethodName()), ROOT_PASSWORD); cfg.setNativeLibPaths(NativeMapIT.nativeMapLocation().getAbsolutePath()); + cfg.setProperty(Property.GC_FILE_ARCHIVE, Boolean.TRUE.toString()); Configuration coreSite = new Configuration(false); configure(cfg, coreSite); cfg.setProperty(Property.TSERV_NATIVEMAP_ENABLED, Boolean.TRUE.toString()); http://git-wip-us.apache.org/repos/asf/accumulo/blob/7b7b468f/test/src/test/java/org/apache/accumulo/test/functional/SimpleMacIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/SimpleMacIT.java b/test/src/test/java/org/apache/accumulo/test/functional/SimpleMacIT.java index 1dd9562..a4e6647 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/SimpleMacIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/SimpleMacIT.java @@ -83,6 +83,7 @@ public class SimpleMacIT extends AbstractMacIT { MiniAccumuloConfigImpl cfg = new MiniAccumuloConfigImpl(folder, ROOT_PASSWORD); cfg.setNativeLibPaths(NativeMapIT.nativeMapLocation().getAbsolutePath()); cfg.setProperty(Property.TSERV_NATIVEMAP_ENABLED, Boolean.TRUE.toString()); + cfg.setProperty(Property.GC_FILE_ARCHIVE, Boolean.TRUE.toString()); configureForEnvironment(cfg, SimpleMacIT.class, createSharedTestDir(SimpleMacIT.class.getName() + "-ssl")); cluster = new MiniAccumuloClusterImpl(cfg); }