Repository: tez Updated Branches: refs/heads/master f9d15c869 -> 8a1ac4458
TEZ-2875. Enable missing tests in TestAnalyzer (bikas) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/8a1ac445 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/8a1ac445 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/8a1ac445 Branch: refs/heads/master Commit: 8a1ac44584093f7dfc9a43ad91c546be1e35148a Parents: f9d15c8 Author: Bikas Saha <[email protected]> Authored: Fri Oct 9 10:47:16 2015 -0700 Committer: Bikas Saha <[email protected]> Committed: Fri Oct 9 10:47:16 2015 -0700 ---------------------------------------------------------------------- CHANGES.txt | 1 + .../org/apache/tez/analyzer/TestAnalyzer.java | 24 ++++++++++---------- 2 files changed, 13 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/8a1ac445/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 25bb1d2..1ced5d8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ Release 0.8.1: Unreleased INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-2875. Enable missing tests in TestAnalyzer TEZ-2781. Fallback to send only TaskAttemptFailedEvent if taskFailed heartbeat fails TEZ-1788. Allow vertex level disabling of speculation TEZ-2868. Fix setting Caller Context in Tez Examples. http://git-wip-us.apache.org/repos/asf/tez/blob/8a1ac445/tez-tools/analyzers/job-analyzer/src/test/java/org/apache/tez/analyzer/TestAnalyzer.java ---------------------------------------------------------------------- diff --git a/tez-tools/analyzers/job-analyzer/src/test/java/org/apache/tez/analyzer/TestAnalyzer.java b/tez-tools/analyzers/job-analyzer/src/test/java/org/apache/tez/analyzer/TestAnalyzer.java index 6606a74..f680f59 100644 --- a/tez-tools/analyzers/job-analyzer/src/test/java/org/apache/tez/analyzer/TestAnalyzer.java +++ b/tez-tools/analyzers/job-analyzer/src/test/java/org/apache/tez/analyzer/TestAnalyzer.java @@ -363,18 +363,18 @@ public class TestAnalyzer { List<List<StepCheck[]>> stepsOptions = Lists.newArrayList(); // run all test dags stepsOptions.add(testAttemptOfDownstreamVertexConnectedWithTwoUpstreamVerticesFailure()); - testInputFailureCausesRerunOfTwoVerticesWithoutExit(); - testMultiVersionInputFailureWithoutExit(); - testCascadingInputFailureWithoutExitSuccess(); - testTaskMultipleFailures(); - testBasicInputFailureWithoutExit(); - testBasicTaskFailure(); - testBasicSuccessScatterGather(); - testMultiVersionInputFailureWithExit(); - testBasicInputFailureWithExit(); - testInputFailureRerunCanSendOutputToTwoDownstreamVertices(); - testCascadingInputFailureWithExitSuccess(); - testInternalPreemption(); + stepsOptions.add(testInputFailureCausesRerunOfTwoVerticesWithoutExit()); + stepsOptions.add(testMultiVersionInputFailureWithoutExit()); + stepsOptions.add(testCascadingInputFailureWithoutExitSuccess()); + stepsOptions.add(testTaskMultipleFailures()); + stepsOptions.add(testBasicInputFailureWithoutExit()); + stepsOptions.add(testBasicTaskFailure()); + stepsOptions.add(testBasicSuccessScatterGather()); + stepsOptions.add(testMultiVersionInputFailureWithExit()); + stepsOptions.add(testBasicInputFailureWithExit()); + stepsOptions.add(testInputFailureRerunCanSendOutputToTwoDownstreamVertices()); + stepsOptions.add(testCascadingInputFailureWithExitSuccess()); + stepsOptions.add(testInternalPreemption()); // close session to flush if (tezSession != null) {
