Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] JUnit test fixes.

Proposed patch to get the tests to compile(this is not applied, do not have
the permission)

2002-10-30 Alain Magloire

	* core/org/eclipse/cdt/debug/core/tests/TargetTests.java: Test number
	24183 is no longer valid, the method was remove from the CDI API.


Index: core/org/eclipse/cdt/debug/core/tests/TargetTests.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui.tests/core/org/eclipse/cdt/debug/core/tests/TargetTests.java,v
retrieving revision 1.1
diff -u -r1.1 TargetTests.java
--- core/org/eclipse/cdt/debug/core/tests/TargetTests.java	10 Oct 2002 18:22:09 -0000	1.1
+++ core/org/eclipse/cdt/debug/core/tests/TargetTests.java	30 Oct 2002 19:34:42 -0000
@@ -134,7 +134,7 @@
             Thread.sleep(100);
         }
         assertTrue(targets[0].isSuspended());
-        assertNotNull("PR:24183", targets[0].evaluateExpressionToValue("a"));
+        //assertNotNull("PR:24183", targets[0].evaluateExpressionToValue("a"));
         /* clean up the session */
         session.terminate();
 



Back to the top