Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Adding failedTests folder

Here's a patch for a failedTests folder under org.eclipse.cdt.ui.tests.
The idea is to write JUnit tests for bugs we find, the tests will of course fail until we get around to fixing the bugs.  So this is to keep the tests we know will fail separate from the ones that should all be passing.
 
I will send another patch containing the first such failing test once this is commited.  I can't seem to create a patch that contains both the folder and its contents at once.
 
-Andrew
 
Index: .classpath
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui.tests/.classpath,v
retrieving revision 1.5
diff -u -r1.5 .classpath
--- .classpath 7 Apr 2003 21:34:58 -0000 1.5
+++ .classpath 10 Apr 2003 13:38:34 -0000
@@ -21,5 +21,6 @@
     <classpathentry kind="src" path="/org.junit"/>
     <classpathentry kind="src" path="/org.eclipse.update.core"/>
     <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+    <classpathentry kind="src" path="failedTests"/>
     <classpathentry kind="output" path="bin"/>
 </classpath>


Back to the top