Steve Tynor wrote:
Thanks Stefane -

With a bit more investigation, the ThemeSerializer test is simply failing because the Transformer DOM to string conversion has used "native" windows carriage-return linefeed conventions, while the "expected" file is just read character for character and sees the unix linefeed convention -- a fix may simply be to change the getFileContent() function to read a line at a time and append "native" linefeed string (System.getProperty("line.separator")) to each line instead of expecting a byte-for-byte equivalence?

I'm just trying to do a top-level "mvn install" or "mvn test" on the entire nuxeo-ep source bundle.

Steve


Hi, until the test is fixed you can add a line such as:

<build>
   <plugins>
     <plugin>
       <artifactId>maven-surefire-plugin</artifactId>
       <configuration>
         <excludes>
           <exclude>**/TestNameOfTheTest.class</exclude>
         </excludes>

...

in pom.xml

/JM

On 4/5/2007 4:09 PM, Stefane Fermigier wrote:
Hi Steve,

Yes, there are several core developers at Nuxeo who use Windows as a development environment, but I'm not sure they run the NXTheme regularly. Jean-Marc, NXTheme's developer, runs Linux, AFAIK.

A problem is, our automated testing facility, TeamCity, currently only has a Linux client.

I'm going to try setting up a second client, this time running Windows.

  S.
_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm

_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm

Reply via email to