From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13985 invoked by alias); 9 Sep 2005 20:01:03 -0000 Mailing-List: contact mauve-discuss-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-discuss-owner@sources.redhat.com Received: (qmail 13955 invoked by uid 22791); 9 Sep 2005 20:00:56 -0000 Received: from mail13.bluewin.ch (HELO mail13.bluewin.ch) (195.186.18.62) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Fri, 09 Sep 2005 20:00:56 +0000 Received: from [127.0.0.1] (81.63.61.6) by mail13.bluewin.ch (Bluewin 7.2.063) id 42DF67480097E59E; Fri, 9 Sep 2005 20:00:49 +0000 Message-ID: <4321E9E6.1020308@bluewin.ch> Date: Fri, 09 Sep 2005 20:01:00 -0000 From: Meskauskas Audrius Reply-To: audriusa@bluewin.ch User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) MIME-Version: 1.0 To: Martin Olsson , mauve-discuss@sources.redhat.com Subject: Re: Mauve coding on Windows References: <432259B7.70208@minimum.se> In-Reply-To: <432259B7.70208@minimum.se> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2005-q3/txt/msg00021.txt.bz2 As your purpose is to just write some new tests and not to test GNU Classpath, the simplest and easiest way would be without much thinking to delete all tests. Store the unmodified copy of the source. Then remove 'BinaryCompatibility', 'gnu', 'java', 'javax', 'locales' and 'org' from gnu/testlet. Try to build. Errors will be reported in gnu/testlet/config.java, because the generated file names contain the '\' character (separator under Windows!). Open that file and replace the '\' by '\\' in all strings. Try to build again. Should succeed. Now, look at the contents the previously deleted gnu/testlet/java, gnu/testlet/javax and so on, to see how the tests look like and that rules the folder system follows. All tests implement the Testlet interface and has the line like "// Tags: JDK1.4" on the top. The Mauve framework is rather clear, you will understand. Try to move back, compile and run several tests that would look simple for you. If still fails, check: 1. If Eclipse has copied all source files into the project folder in workspace. 2. If your Ant is properly installed and added to the project build path. Martin Olsson wrote: > Hi, > > I would like to write some test cases for the GNU classpath project. I > fetched Mauve from CVS (using eclipse "create project from cvs") but I > ran into a whole bunch of errors: > > http://mnemo.minimum.se/error.txt > > I think these errors are related to me running Windows 2000 and > windows does not allow a file called "Color" and a dir called "color". > > Someone on IRC said that there is atleast one other guy that uses > Windows for Mauve development (Jeroen?). If anyone can provide > information how I can setup a proper Mauve-compatible dev environment > on Windows please drop me a line. > > --- > > I also have another question, how do I know what test cases are > missing and needs to be implemented? > > > rgrds > martin > >