Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2017-05-02 11:43:18 +0000
committerAndrey Loskutov2017-05-02 11:43:18 +0000
commit4b9430970e360cfdd5b60d3c5a83f675a6b79c70 (patch)
tree48078503a65a3444cc2a233e04bd192c85b645d1
parent2d76f25b443d60c75ffb3888e3977480934325e8 (diff)
downloadeclipse.jdt.debug-4b9430970e360cfdd5b60d3c5a83f675a6b79c70.tar.gz
eclipse.jdt.debug-4b9430970e360cfdd5b60d3c5a83f675a6b79c70.tar.xz
eclipse.jdt.debug-4b9430970e360cfdd5b60d3c5a83f675a6b79c70.zip
Bug 516041 - testConditionBreakpointReturnNonBooleanObject randomly
fails Moved assert out of finally block to see the original exception. Change-Id: Ifb49b439031645abddc7acedf191214599aa7f5c Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
-rwxr-xr-xorg.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java
index 581cde2d3..d510d2c24 100755
--- a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java
+++ b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java
@@ -507,10 +507,9 @@ public class ConditionalBreakpointsTests extends AbstractDebugTest {
IJavaThread thread = null;
try {
thread = launchToLineBreakpoint(typeName, bp1);
-
+ assertNotNull(thread);
}
finally {
- assertNotNull(thread);
terminateAndRemove(thread);
removeAllBreakpoints();
}

Back to the top