Current IT failures

2012-09-26 Thread Brett Porter
The following tests were failing:
- VS Add In - removed, will remove that plugin
- IT0036 - relied on behaviour of copying to target/build-sources. Updated and 
confirming fixed now.

The following tests are still failing:
- Silverlight, Azure, MsDeploy - relying on create-package goal name (see other 
thread)
- IT0037, IT0038 - uses includeSources, which is not operating as expected 
after the changes in NPANDAY-210 - Lars, are you still working on this?
- NPANDAY_459 - changes to dependency resolution mean it is not pulling things 
in transitively. I'll take a look but might need some pointers

Cheers,
Brett

--
Brett Porter
br...@apache.org
http://brettporter.wordpress.com/
http://au.linkedin.com/in/brettporter
http://twitter.com/brettporter







Re: svn commit: r1390287 - in /incubator/npanday/npanday-its/trunk/src/test/java/npanday/its: AbstractNPandayIntegrationTestCase.java NPandayIT0036InstalledArtifactsVerificationTest.java

2012-09-26 Thread Lars Corneliussen
that is the problem, when not trusting the build :)
i made the its fail, but i didn't think it was my fault, since builds fail 
often :-)

Am 26.09.2012 um 07:49 schrieb br...@apache.org:

 Author: brett
 Date: Wed Sep 26 05:49:15 2012
 New Revision: 1390287
 
 URL: http://svn.apache.org/viewvc?rev=1390287view=rev
 Log:
 update test now that sources are not necessarily copied to
 target/build-sources
 
 Modified:

 incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AbstractNPandayIntegrationTestCase.java

 incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayIT0036InstalledArtifactsVerificationTest.java
 
 Modified: 
 incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AbstractNPandayIntegrationTestCase.java
 URL: 
 http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AbstractNPandayIntegrationTestCase.java?rev=1390287r1=1390286r2=1390287view=diff
 ==
 --- 
 incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AbstractNPandayIntegrationTestCase.java
  (original)
 +++ 
 incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AbstractNPandayIntegrationTestCase.java
  Wed Sep 26 05:49:15 2012
 @@ -310,24 +310,9 @@ public abstract class AbstractNPandayInt
 return target/comments.xml;
 }
 
 -protected String getBuildSourcesMain( String fileName )
 -{
 -return getBuildFile( build-sources, fileName );
 -}
 -
 protected String getBuildSourcesGenerated( String fileName )
 {
 -return getBuildSourcesMain( fileName );
 -}
 -
 -protected String getTestSourcesMain( String fileName )
 -{
 -return getBuildFile( build-test-sources, fileName );
 -}
 -
 -protected String getTestSourcesGenerated( String fileName )
 -{
 -return getTestSourcesMain( fileName );
 +return getBuildFile( build-sources, fileName );
 }
 
 protected String getBuildFile( String buildDirectory, String fileName )
 
 Modified: 
 incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayIT0036InstalledArtifactsVerificationTest.java
 URL: 
 http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayIT0036InstalledArtifactsVerificationTest.java?rev=1390287r1=1390286r2=1390287view=diff
 ==
 --- 
 incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayIT0036InstalledArtifactsVerificationTest.java
  (original)
 +++ 
 incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/NPandayIT0036InstalledArtifactsVerificationTest.java
  Wed Sep 26 05:49:15 2012
 @@ -38,8 +38,9 @@ public class NPandayIT0036InstalledArtif
 File testDir = ResourceExtractor.simpleExtractResources( getClass(), 
 /NPandayIT0036InstalledArtifactsVerificationTest );
 Verifier verifier = getVerifier( testDir );
 verifier.executeGoal( install );
 -verifier.assertFilePresent(
 -new File( testDir, getAssemblyFile( NPandayIT0036, 1.0.0.0, 
 exe ) ).getAbsolutePath() );
 +String exe =
 +new File( testDir, getAssemblyFile( NPandayIT0036, 1.0.0.0, 
 exe ) ).getAbsolutePath();
 +verifier.assertFilePresent( exe );
 verifier.assertFilePresent(
 new File( testDir, getAssemblyFile( NPandayIT0036-test, 
 1.0.0.0, dll ) ).getAbsolutePath() );
 verifier.assertFilePresent( new File( testDir, getAssemblyFile( 
 test-assemblies/NPandayIT0036, 1.0.0.0,
 @@ -49,27 +50,8 @@ public class NPandayIT0036InstalledArtif
 verifier.assertFilePresent( new File( testDir, getAssemblyFile( 
 test-assemblies/NUnit.Framework, 1.0.0.0,
 dll 
 ) ).getAbsolutePath() );
 
 -verifier.assertFilePresent( new File( testDir, getBuildSourcesMain( 
 Module1.vb ) ).getAbsolutePath() );
 -verifier.assertFilePresent( new File( testDir, getBuildSourcesMain( 
 folder/Module2.vb ) ).getAbsolutePath() );
 -verifier.assertFileNotPresent(
 -new File( testDir, getBuildSourcesMain( 
 should-not-be-copied.txt ) ).getAbsolutePath() );
 -verifier.assertFileNotPresent(
 -new File( testDir, getBuildSourcesMain( 
 should-not-be-copied.xml ) ).getAbsolutePath() );
 -verifier.assertFileNotPresent(
 -new File( testDir, getBuildSourcesMain( 
 folder/should-not-be-copied-2.txt ) ).getAbsolutePath() );
 -verifier.assertFileNotPresent(
 -new File( testDir, getBuildSourcesMain( 
 folder/should-not-be-copied-2.xml ) ).getAbsolutePath() );
 -
 -verifier.assertFilePresent( new File( testDir, getTestSourcesMain( 
 Module1.vb ) ).getAbsolutePath() );
 -verifier.assertFilePresent( new File( testDir, getTestSourcesMain( 
 folder/Module2.vb ) ).getAbsolutePath() );
 -  

NPanday-it-runner - Build # 314 - Failure

2012-09-26 Thread Apache Jenkins Server
The Apache Jenkins build system has built NPanday-it-runner (build #314)

Status: Failure

Check console output at https://builds.apache.org/job/NPanday-it-runner/314/ to 
view the results.

npanday-plugin-its - Build # 257 - Still Failing

2012-09-26 Thread Apache Jenkins Server
The Apache Jenkins build system has built npanday-plugin-its (build #257)

Status: Still Failing

Check console output at https://builds.apache.org/job/npanday-plugin-its/257/ 
to view the results.

NPanday-it-runner - Build # 316 - Still Failing

2012-09-26 Thread Apache Jenkins Server
The Apache Jenkins build system has built NPanday-it-runner (build #316)

Status: Still Failing

Check console output at https://builds.apache.org/job/NPanday-it-runner/316/ to 
view the results.

NPanday - Build # 384 - Still Failing

2012-09-26 Thread Apache Jenkins Server
The Apache Jenkins build system has built NPanday (build #384)

Status: Still Failing

Check console output at https://builds.apache.org/job/NPanday/384/ to view the 
results.