Repository: incubator-geode Updated Branches: refs/heads/feature/GEODE-1050 d41e74d08 -> f6c27fc34
Fix up Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/f6c27fc3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/f6c27fc3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/f6c27fc3 Branch: refs/heads/feature/GEODE-1050 Commit: f6c27fc34df8dbf0ba9db5a2ea2ec32854e2bbed Parents: d41e74d Author: Kirk Lund <[email protected]> Authored: Thu Mar 17 16:42:27 2016 -0700 Committer: Kirk Lund <[email protected]> Committed: Thu Mar 17 16:42:27 2016 -0700 ---------------------------------------------------------------------- .../gemfire/cache/query/dunit/QueryIndexUsingXMLDUnitTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/f6c27fc3/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/QueryIndexUsingXMLDUnitTest.java ---------------------------------------------------------------------- diff --git a/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/QueryIndexUsingXMLDUnitTest.java b/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/QueryIndexUsingXMLDUnitTest.java index c4d5944..6e4ed11 100644 --- a/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/QueryIndexUsingXMLDUnitTest.java +++ b/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/QueryIndexUsingXMLDUnitTest.java @@ -141,6 +141,7 @@ public class QueryIndexUsingXMLDUnitTest extends CacheTestCase { @Override public final void postTearDownCacheTestCase() throws Exception { + // avoid creating a new cache just to get the diskstore name Invoke.invokeInEveryVM(resetTestHook()); disconnectFromDS(); FileUtil.delete(new File(GemFireCacheImpl.DEFAULT_DS_NAME).getAbsoluteFile()); @@ -330,7 +331,7 @@ public class QueryIndexUsingXMLDUnitTest extends CacheTestCase { com.gemstone.gemfire.test.dunit.LogWriterUtils.getLogWriter().info( "Creating index using an xml file name : " + fileName); - vm0.invoke(createIndexThrougXML("vm0testPersistentPRRegion", persistentRegName, fileName)); // TODO: hangs + vm0.invoke(createIndexThrougXML("vm0testPersistentPRRegion", persistentRegName, fileName)); // LoadRegion vm0.invoke(loadRegion(this.persistentRegName)); vm0.invoke(loadRegion(noIndexRepReg));
