Skip to main content

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

Attached is a zip containing the initial contents of the failedTests folder which goes under org.eclipse.cdt.ui.tests
-Andrew
-----Original Message-----
From: Schaefer, Doug [mailto:dschaefer@xxxxxxxxxxxx]
Sent: Thursday, April 10, 2003 9:49 AM
To: 'cdt-patch@xxxxxxxxxxx'
Subject: RE: [cdt-patch] Adding failedTests folder

Thanks, but we need something in the folder before we can add the source folder to the .classpath entry.  CVS is weird that way.

 

Doug Schaefer

Rational Software - IBM Software Group

Ottawa (Kanata), Ontario, Canada

 

-----Original Message-----
From: Niefer, Andrew [mailto:aniefer@xxxxxxxxxxxx]
Sent: Thursday, April 10, 2003 9:41 AM
To: 'cdt-patch@xxxxxxxxxxx'
Subject: [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>

Attachment: failedTests.zip
Description: Binary data


Back to the top