Repository: oozie Updated Branches: refs/heads/master b94bcf4d1 -> 9a82b0f82
OOZIE-1701 TestXTestCase#testWaitFor and TestXTestCase#testBaseDir have the errors (omaliuvanchuk via rohini) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/9a82b0f8 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/9a82b0f8 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/9a82b0f8 Branch: refs/heads/master Commit: 9a82b0f82d4d01f7020b52010df24d83508dcdc6 Parents: b94bcf4 Author: Rohini Palaniswamy <[email protected]> Authored: Mon Mar 24 12:15:13 2014 -0700 Committer: Rohini Palaniswamy <[email protected]> Committed: Mon Mar 24 12:15:13 2014 -0700 ---------------------------------------------------------------------- .../test/java/org/apache/oozie/test/TestXTestCase.java | 12 ++++++++++++ release-log.txt | 1 + 2 files changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/9a82b0f8/core/src/test/java/org/apache/oozie/test/TestXTestCase.java ---------------------------------------------------------------------- diff --git a/core/src/test/java/org/apache/oozie/test/TestXTestCase.java b/core/src/test/java/org/apache/oozie/test/TestXTestCase.java index f6a75e2..eeac8ac 100644 --- a/core/src/test/java/org/apache/oozie/test/TestXTestCase.java +++ b/core/src/test/java/org/apache/oozie/test/TestXTestCase.java @@ -93,6 +93,18 @@ public class TestXTestCase extends TestCase { public static class MyXTestCase extends XTestCase { + protected void setUp() throws Exception { + if(TESTING){ + super.setUp(); + } + } + + protected void tearDown() throws Exception { + if(TESTING){ + super.tearDown(); + } + } + public void testDummy() { } http://git-wip-us.apache.org/repos/asf/oozie/blob/9a82b0f8/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index f97c3f8..b68bae2 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.1.0 release (trunk - unreleased) +OOZIE-1701 TestXTestCase#testWaitFor and TestXTestCase#testBaseDir have the errors (omaliuvanchuk via rohini) OOZIE-1751 Default authentication type using env variable for oozie CLI (puru via rohini) OOZIE-1753 Update create-release-artifact script for git (rkanter) OOZIE-1704 Add ability to use Bulk API with bundle ID (mona)
