[NO ISSUE][BAD] Add Required Test Classes Dependency Change-Id: Id661bb2dd3119f8ed9db93827b22afa1f2afdb7b
Project: http://git-wip-us.apache.org/repos/asf/asterixdb-bad/repo Commit: http://git-wip-us.apache.org/repos/asf/asterixdb-bad/commit/8c940db8 Tree: http://git-wip-us.apache.org/repos/asf/asterixdb-bad/tree/8c940db8 Diff: http://git-wip-us.apache.org/repos/asf/asterixdb-bad/diff/8c940db8 Branch: refs/heads/resultsFinalVersion Commit: 8c940db8aac7c84211b7b66091125b79b438d83d Parents: 5364a83 Author: Murtadha Hubail <[email protected]> Authored: Fri Jul 13 02:34:29 2018 +0300 Committer: Murtadha Hubail <[email protected]> Committed: Fri Jul 13 02:34:29 2018 +0300 ---------------------------------------------------------------------- asterix-bad/pom.xml | 7 +++++++ .../java/org/apache/asterix/bad/test/BADExecutionTest.java | 2 ++ 2 files changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/asterixdb-bad/blob/8c940db8/asterix-bad/pom.xml ---------------------------------------------------------------------- diff --git a/asterix-bad/pom.xml b/asterix-bad/pom.xml index cc8204e..3dbeca6 100644 --- a/asterix-bad/pom.xml +++ b/asterix-bad/pom.xml @@ -318,5 +318,12 @@ <groupId>org.apache.hyracks</groupId> <artifactId>hyracks-api</artifactId> </dependency> + <dependency> + <groupId>org.apache.hyracks</groupId> + <artifactId>hyracks-storage-am-lsm-btree-test</artifactId> + <version>${hyracks.version}</version> + <type>test-jar</type> + <scope>test</scope> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/asterixdb-bad/blob/8c940db8/asterix-bad/src/test/java/org/apache/asterix/bad/test/BADExecutionTest.java ---------------------------------------------------------------------- diff --git a/asterix-bad/src/test/java/org/apache/asterix/bad/test/BADExecutionTest.java b/asterix-bad/src/test/java/org/apache/asterix/bad/test/BADExecutionTest.java index 9701b2b..f9a2e6e 100644 --- a/asterix-bad/src/test/java/org/apache/asterix/bad/test/BADExecutionTest.java +++ b/asterix-bad/src/test/java/org/apache/asterix/bad/test/BADExecutionTest.java @@ -30,6 +30,7 @@ import org.apache.asterix.test.runtime.ExecutionTestUtil; import org.apache.asterix.testframework.context.TestCaseContext; import org.apache.asterix.testframework.xml.TestGroup; import org.apache.commons.lang3.StringUtils; +import org.apache.hyracks.storage.am.lsm.btree.impl.TestLsmBtreeLocalResource; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; @@ -57,6 +58,7 @@ public class BADExecutionTest { private static final boolean cleanupOnStop = true; protected static TestGroup FailedGroup; + protected TestLsmBtreeLocalResource resource = null; @BeforeClass public static void setUp() throws Exception {
