You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@river.apache.org by Apache Jenkins Server <je...@builds.apache.org> on 2012/09/14 12:47:01 UTC

Build failed in Jenkins: River-QA-runtime #87

See <https://builds.apache.org/job/River-QA-runtime/87/changes>

Changes:

[peter_firmstone] Enable hudson-qa-arm build

[peter_firmstone] Enable hudson-qa-arm build

[peter_firmstone] Enable hudson-qa-arm build

[peter_firmstone] Enable hudson-qa-arm build

[peter_firmstone] Enable hudson-qa-arm build

[peter_firmstone] Enable hudson-qa-arm build

[peter_firmstone] reverse commit that caused test failures on jdk7

[peter_firmstone] Minor change to UriString, avoids changing file separator unnecessarily.

[peter_firmstone] Fix failing test on Ubuntu jdk7

[peter_firmstone] Fix failing test on Ubuntu jdk7

[peter_firmstone] Reverse recent change to UriString.

[peter_firmstone] Feeble attempt to fix Solaris x64 test failures, may be reversed.

[peter_firmstone] Work around sun bug ID 6536522 NPE thrown instead of MalformedURLException

[peter_firmstone] Work around sun bug ID 6536522 NPE thrown instead of MalformedURLException

[peter_firmstone] Work around sun bug ID 6536522 NPE thrown instead of MalformedURLException

[peter_firmstone] Work around sun bug ID6536522 NPE thrown instead of MalformedURLException

[peter_firmstone] Work around sun bug ID6536522 NPE thrown instead of MalformedURLException

[peter_firmstone] Work around sun bug ID6536522 NPE thrown instead of MalformedURLException

[peter_firmstone] Investigate test failure on Solaris x86, BadLocatorDiscoveryListener.

Sun Bug ID:6536522 NPE thrown instead of MalformedURLException

[peter_firmstone] Comment out Windows platform specific junit tests.

[peter_firmstone] Remove characters that prevent compilation on Ubuntu, these characters were legal on Windows and Solaris Sparc.

[peter_firmstone] Remove characters that prevent compilation on Solaris x86, these characters were legal on Windows and Solaris Sparc.

[peter_firmstone] RFC3986 standard compliant URI normalisation for PreferredClassProvider and policy file grants, including some additional fixes for Windows file path warts.

[peter_firmstone] Revert : Lets see if we can't get BSD to run some tests!

[peter_firmstone] Lets see if we can't get BSD to run some tests!

[peter_firmstone] Unreliable junit test false failures

[peter_firmstone] Will be reversed, commit only for assistance with hudson failing tests on Windows

[peter_firmstone] River-396 PreferredClassProvider Concurrency improvement.  Re-factored and simplified the weak cache, which was a little difficult to understand due to the relations between weak references and WeakHashMap.

WeakHashMap uses weak keys but what we really wanted was a ConcurrentMap that used weak values, where the value is a child ClassLoader, the key is unique to the ClassLoader so when it becomes weakly reachable the key can be removed too.

using a ConcurrentMap also eliminates any issue with synchronisation and atomic replacement of a key & value combination that has become weakly reachable.  This allows removal of the synchronised block around checking ClassLoader permissions, Concurrency in practise recommends against synchronising on external state.

Tests have been revised to include the classpath and permissions for the new libraries.

[peter_firmstone] Changes to make SubPoliciesTest platform independent.  File path was "Live Free or Die" UNIX specific.

[peter_firmstone] Subject.doAs and doAsPrivileged alternatives.

[peter_firmstone] Attempt to fix windows file URI issues.

[peter_firmstone] Attempt to fix windows file URI issues.

[peter_firmstone] Another attempt to fix windows file URI issues from afar, if lucky all tests should now pass, unless something else has failed.

[peter_firmstone] Another attempt to fix windows issues from afar.

[peter_firmstone] Feeble attempt to fix failing test on Hudson Windows:

com/sun/jini/test/impl/locatordiscovery/BadLocatorDiscoveryListener.td

Reversion of last commit, activate security debugging, lets get some more info.

[peter_firmstone] Feeble attempt to fix failing test on Hudson Windows:

com/sun/jini/test/impl/locatordiscovery/BadLocatorDiscoveryListener.td

The commit may be reversed, I suspect that at class initialisation time of PreferredClassProvider the java Policy file has been instantiated, however it hasn't handed over to our policy implementation yet.  Try using lazy loading to avoid requiring RuntimePermission("getClassLoader") until after class initialisation has completed.

[peter_firmstone] changed subversion properties of copied external library in test/lib

[peter_firmstone] Fixing URI / URL issues on windows.  Found cause of failing test SubPoliciesTest, pseudo URL file strings have /C: prepended on windows platforms.

Made fields final in UriString as suggested by Dan Rollo - thanks.

[peter_firmstone] Fixing URI / URL issues on windows.  Found cause of failing test SubPoliciesTest, pseudo URL file strings have /C: prepended on windows platforms.

Made fields final in UriString as suggested by Dan Rollo - thanks.

[peter_firmstone] Fixing windows URL / URI issues.

[peter_firmstone] Fixing URI / URL issues on windows.

[peter_firmstone] Fixing URI / URL issues on windows, fixing Thread.sleep replacements for Thread.yield

[peter_firmstone] Fixing URI / URL issues on windows, fixing Thread.sleep replacements for Thread.yield

[peter_firmstone] Revert one Thread.yield() call in FiddlerImpl

Fix URI issues with URIGrant on MS Windows platforms by cleaning up URI strings prior to instantiation and adding leading forward slashes missing from file path strings.

[peter_firmstone] Windows platforms have issues with file name paths, illegal characters need to be escaped, this requires further work, not as simple as I originally thought.  This is for testing on hudson

[peter_firmstone] Backed out last change for URI codebase grants which causes numerous test failures.  Windows platforms have issues with file name paths, illegal characters need to be escaped, this requires further work, not as simple as I originally thought.

[peter_firmstone] URI spaces in codebase strings caused problems with Windows platforms - fixed.

Removed calls to Thread.yield().

[peter_firmstone] Alter tests that fail due to ConcurrentPolicyFile delegating up to java.security.Policy.getPermissions(CodeSource) when CodeSource is found not to have AllPermission.  Only CodeSources that are privileged have Permissions returned that contains AllPermission. This is an optimisation that complies with java.security.Policy.

[peter_firmstone] seems to be some

[peter_firmstone] Fixed failing junit tests caused by change to ConcurrentPolicyFile.getPermissions(CodeSource) method that now only returns Permissions for privileged CodeSource and delegates up to the super class java.security.Policy if the CodeSource is not privileged.

[peter_firmstone] Refactoring for release, clean up and review new public api, sanity check and remove unnecessary methods.

Added dnsjava name service provider to handle reverse dns lookup and to provide concurrent dns lookups.

Updated reference-collections, these were updated to avoid calling hashCode during initialisation of Timed references and temporary referrers, this helped reduced SocketPermission.hashCode calls that caused reverse lookups and recursive permission checks that cause stack overflow in the CombinerSecurityManager.

Two tests are failling due to a change to ConcurrentPolicyFile, now only privileged domains are returned by getPermissions(CodeSource) and all other instances are diverted to the java.security.Policy superclass which returns an empty PermissionCollection this is to avoid checking permissions twice.

Failing tests:

com/sun/jini/test/impl/start/aggregatepolicyprovider/SubPoliciesTest.td
com/sun/jini/test/impl/start/loadersplitpolicyprovider/LoaderSplitPolicyProviderTest.td

[peter_firmstone] Refactoring for release, clean up and review new public api, sanity check and remove unnecessary methods.

Added dnsjava name service provider to handle reverse dns lookup and to provide concurrent dns lookups.

Updated reference-collections, these were updated to avoid calling hashCode during initialisation of Timed references and temporary referrers, this helped reduced SocketPermission.hashCode calls that caused reverse lookups and recursive permission checks that cause stack overflow in the CombinerSecurityManager.

Two tests are failling due to a change to ConcurrentPolicyFile, now only privileged domains are returned by getPermissions(CodeSource) and all other instances are diverted to the java.security.Policy superclass which returns an empty PermissionCollection this is to avoid checking permissions twice.

Failing tests:

com/sun/jini/test/impl/start/aggregatepolicyprovider/SubPoliciesTest.td
com/sun/jini/test/impl/start/loadersplitpolicyprovider/LoaderSplitPolicyProviderTest.td

[peter_firmstone] Refactoring for release, clean up and decrease size of new public api.

Separated RemotePolicy implementation from DynamicPolicyProvider.

Version numbers and documentation still requires update prior to release.

[sijskes] added proper label

[sijskes] forced default compile options in project.properties

[sijskes] added netbeans onebigjar project

[peter_firmstone] Session class delayed instantiation in jdk1.6 caused SecurityException because proxy ProtectionDomain was on the stack.  This caused some jtreg tests to fail, small fix, the bug doesn't exist in any releases.

[peter_firmstone] Add reference-collections to class path in two qa tests.

[thobbs] RIVER-407

[thobbs] Updated rat version

[thobbs] Added missing ASF license header

[peter_firmstone] Fixed bug in Reggie, when random number returns Integer.MIN_VALUE, then Maths.abs returns a negative number.

Fixed a classpath issue in the qa suite, caused by separating reference collections.

[peter_firmstone] Reduced the number of Integer, Long, Float, Char, Short, etc objects created, by using valueOf instead of new.

Replaced string concatenation in loops with StringBuilder.

Fixed some bugs reported by FindBugs.

[peter_firmstone] Deleted failing test, it was no longer relevant, tested Delegate Security Manager functionality, which is now disabled.

Reduced the number of Integer, Long, Float, Char etc objects created, by using valueOf instead of new.

Fixed minor bugs found with FindBugs - some string concatenations in loops outstanding

[peter_firmstone] Deleted failing test, it was no longer relevant, tested Delegate Security Manager functionality, which is now disabled.

Reduced the number of Integer, Long, Float, Char etc objects created, by using valueOf instead of new.

Fixed minor bugs found with FindBugs - some string concatenations in loops outstanding

[peter_firmstone] Cleaning, deleting and reorganising

[peter_firmstone] Cleaning, deleting and reorganising

[peter_firmstone] Cleaning, deleting and reorganising

[peter_firmstone] Cleaning, deleting and reorganising

[sijskes] up 5 to 6 in javadoc.source property

[sijskes] removed source/target overrides in javac-cmd call

[peter_firmstone] Minor post merge changes:

Comment out junit tests for which there is no implementation yet, or fails.  Fix some failing junit tests.

Alter jeri mux session, to only include stack trace after interruption if property set.

Minor changes to build file to copy high-scale-lib.jar for test files.

[peter_firmstone] Replace trunk

[peter_firmstone] Incremental merge

[peter_firmstone] Incremental merge

[peter_firmstone] Incremental merge

[peter_firmstone] Incremental merge

[peter_firmstone] Incremental merge

[peter_firmstone] Incremental merge

[peter_firmstone] Incremental merge

[peter_firmstone] Prepare for merge 2nd try

[peter_firmstone] Propagate the cause of the interrupt. - very minor change to assist service developers during debugging.

[sijskes] 

------------------------------------------
[...truncated 1154 lines...]
    [javac]                                                   ^
    [javac] /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/src/com/sun/jini/test/impl/reggie/NameServiceDescriptorImpl.java:24: warning: sun.net.spi.nameservice.NameService is Sun proprietary API and may be removed in a future release
    [javac]     public NameService createNameService() {return new NameServiceImpl(); }
    [javac]            ^
    [javac] /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/src/com/sun/jini/test/impl/reggie/NameServiceImpl.java:22: warning: sun.net.spi.nameservice.NameService is Sun proprietary API and may be removed in a future release
    [javac] import sun.net.spi.nameservice.NameService;
    [javac]                               ^
    [javac] /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/src/com/sun/jini/test/impl/reggie/NameServiceImpl.java:29: warning: sun.net.spi.nameservice.NameService is Sun proprietary API and may be removed in a future release
    [javac] public class NameServiceImpl implements NameService {
    [javac]                                         ^
    [javac] /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/src/com/sun/jini/test/impl/start/SharedActivationGroupDescriptorTest2.java:31: warning: sun.security.action.GetIntegerAction is Sun proprietary API and may be removed in a future release
    [javac] import sun.security.action.GetIntegerAction;
    [javac]                           ^
    [javac] /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/src/com/sun/jini/test/spec/activation/activationgroup/Constructor_AccessorTest.java:29: warning: sun.rmi.server.UnicastServerRef is Sun proprietary API and may be removed in a future release
    [javac] import sun.rmi.server.UnicastServerRef;
    [javac]                      ^
    [javac] /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/src/com/sun/jini/test/impl/start/SharedActivationGroupDescriptorTest2.java:155: warning: sun.security.action.GetIntegerAction is Sun proprietary API and may be removed in a future release
    [javac] 		   new GetIntegerAction("java.rmi.activation.port", 
    [javac] 		       ^
    [javac] /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/src/com/sun/jini/test/spec/activation/activationgroup/Constructor_AccessorTest.java:68: warning: sun.rmi.server.UnicastServerRef is Sun proprietary API and may be removed in a future release
    [javac]         assertion(ref instanceof UnicastServerRef,
    [javac]                                  ^
    [javac] Note: Some input files use or override a deprecated API.
    [javac] Note: Recompile with -Xlint:deprecation for details.
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    [javac] 10 warnings

harness-killer.stubs:
     [rmic] RMI Compiling 1 class to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

nonactivatablegroup.stubs:
     [rmic] RMI Compiling 1 class to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-fiddler.stubs:
     [rmic] RMI Compiling 2 classes to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-joinmanager.stubs:
     [rmic] RMI Compiling 1 class to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-mercury.stubs:
     [rmic] RMI Compiling 5 classes to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-norm.stubs:
     [rmic] RMI Compiling 2 classes to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-outrigger.stubs:
     [rmic] RMI Compiling 6 classes to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-start.stubs:
     [rmic] RMI Compiling 3 classes to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-lookup-simulator.stubs:
     [rmic] RMI Compiling 1 class to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-share.stubs:
     [rmic] RMI Compiling 5 classes to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-discoveryservice.stubs:
     [rmic] RMI Compiling 1 class to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-javaspace.stubs:
     [rmic] RMI Compiling 3 classes to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-lookupservice.stubs:
     [rmic] RMI Compiling 26 classes to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

qa1-renewalservice.stubs:
     [rmic] RMI Compiling 1 class to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes

jrmp.stubs:
     [rmic] RMI Compiling 1 class to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes
     [rmic] IIOP has been turned on.

iiop.stubs:
     [rmic] RMI Compiling 1 class to /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build/classes
     [rmic] IIOP has been turned on.

stubs:

are-keystores-available:

keystores:
     [echo] creating keystores
   [genkey] Generating Key for tester
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/tester.cert>
   [genkey] Generating Key for reggie
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/reggie.cert>
   [genkey] Generating Key for phoenix
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/phoenix.cert>
   [genkey] Generating Key for mercury
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/mercury.cert>
   [genkey] Generating Key for norm
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/norm.cert>
   [genkey] Generating Key for outrigger
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/outrigger.cert>
   [genkey] Generating Key for mahalo
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/mahalo.cert>
   [genkey] Generating Key for fiddler
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/fiddler.cert>
   [genkey] Generating Key for group
     [exec] Certificate stored in file </zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/harness/trust/group.cert>

are-passwords-available:

password:
     [echo] creating passwords

truststore:
     [exec] Certificate was added to keystore
     [exec] Certificate was added to keystore
     [exec] Certificate was added to keystore
     [exec] Certificate was added to keystore
     [exec] Certificate was added to keystore
     [exec] Certificate was added to keystore
     [exec] Certificate was added to keystore
     [exec] Certificate was added to keystore
     [exec] Certificate was added to keystore

trust:

qaman.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qaman.jar

mergedpolicyprovider.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib-ext/mergedpolicyprovider.jar

nonactivatablegroup.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/nonactivatablegroup.jar

nonactivatablegroup-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/nonactivatablegroup-dl.jar

harness-killer.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/harness-killer.jar

harness-killer-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/harness-killer-dl.jar

jiniharness.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/jiniharness.jar

harness-jars:

qa1-end2end.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-end2end.jar

qa1-fiddler-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-fiddler-dl.jar

qa1-joinmanager-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-joinmanager-dl.jar

qa1-mahalo-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-mahalo-dl.jar

qa1-mercury.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-mercury.jar
      [jar] Updating jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-mercury.jar

qa1-mercury-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-mercury-dl.jar
      [jar] Updating jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-mercury-dl.jar

qa1-mercury-bogusimpl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-mercury-bogusimpl.jar

qa1-wrapper.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-wrapper.jar

qa1-norm-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-norm-dl.jar

qa1-outrigger-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-outrigger-dl.jar

qa1-multihomedmetainf.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/qa1-multihomedmetainf.jar

jinitests:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/jinitests.jar
      [jar] Updating jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/lib/jinitests.jar

BUILD FAILED
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/hudson.xml:85: The following error occurred while executing this line:
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa/build.xml:1062: The following error occurred while executing this line:
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/common.xml:249: java.io.IOException: Cannot run program "/zonestorage/hudson_solaris/home/hudson/tools/java/jdk1.6.0_22/jre/bin/java" (in directory "/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-runtime/jtsk/trunk/qa"): error=12, Not enough space
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
	at java.lang.Runtime.exec(Runtime.java:593)
	at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:862)
	at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
	at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
	at org.apache.tools.ant.taskdefs.Java.fork(Java.java:791)
	at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:214)
	at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:135)
	at org.apache.tools.ant.taskdefs.Java.execute(Java.java:108)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:68)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:398)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
	at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.Main.runBuild(Main.java:809)
	at org.apache.tools.ant.Main.startAnt(Main.java:217)
	at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
	at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)
Caused by: java.io.IOException: error=12, Not enough space
	at java.lang.UNIXProcess.forkAndExec(Native Method)
	at java.lang.UNIXProcess.<init>(UNIXProcess.java:53)
	at java.lang.ProcessImpl.start(ProcessImpl.java:65)
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:453)
	... 51 more

Total time: 19 minutes 22 seconds
Build step 'Invoke Ant' marked build as failure
Archiving artifacts

Jenkins build is back to normal : River-QA-tree #90

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/River-QA-tree/90/changes>


Build failed in Jenkins: River-QA-tree #89

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/River-QA-tree/89/changes>

Changes:

[sijskes] complete run

[sijskes] complete run

------------------------------------------
[...truncated 467 lines...]
     [java] Warning: Nested class ServerConnectionManager$Dispatcher has different preferred state than outer class ServerConnectionManager
     [java] Warning: Nested class ConnectionManager$OutboundMux has different preferred state than outer class ConnectionManager
     [java] Warning: Nested class ConnectionManager$ReqIterator has different preferred state than outer class ConnectionManager
     [java] Warning: Nested class ConnectionManager$Reaper has different preferred state than outer class ConnectionManager
     [java] Warning: Nested class ServerConnectionManager$InboundMux has different preferred state than outer class ServerConnectionManager
     [java] Warning: Nested class ConnectionManager$Outbound has different preferred state than outer class ConnectionManager
     [java] Warning: Nested class ServerConnectionManager$Inbound has different preferred state than outer class ServerConnectionManager
     [java] Warning: Nested class BasicObjectEndpoint$DgcBatchContext has different preferred state than outer class BasicObjectEndpoint
     [java] Warning: Nested class BasicObjectEndpoint$AckListener has different preferred state than outer class BasicObjectEndpoint
     [java] Warning: Nested class AbstractILFactory$1 has different preferred state than outer class AbstractILFactory
     [java] Warning: Nested class KerberosEndpoint$1 has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosEndpoint$KerberosEndpointInternals has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ServerConnectionImpl has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ConnectionHandler has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosEndpoint$CacheKey has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ConnectionHandler$1$1 has different preferred state than outer class KerberosServerEndpoint$ConnectionHandler$1
     [java] Warning: Nested class KerberosUtil$SoftCache$ValueCell has different preferred state than outer class KerberosUtil$SoftCache
     [java] Warning: Nested class KerberosServerEndpoint$ListenCookieImpl has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosEndpoint$RequestHandleImpl has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ListenEndpointImpl has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$2 has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ListenHandleImpl has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosEndpoint$ConnectionImpl has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$1 has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosUtil$SoftCache$LRUHashMap has different preferred state than outer class KerberosUtil$SoftCache
     [java] Warning: Nested class KerberosServerEndpoint$3 has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosEndpoint$ConnectionEndpointImpl has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class SslEndpoint$SslEndpointInternals has different preferred state than outer class SslEndpoint
     [java] Warning: Nested class HttpsEndpoint$Reaper has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$EndpointInfo has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$HttpClient has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsServerEndpoint$1 has different preferred state than outer class HttpsServerEndpoint
     [java] Warning: Nested class HttpsServerEndpoint$HttpsServerEndpointImpl has different preferred state than outer class HttpsServerEndpoint
     [java] Warning: Nested class HttpsEndpoint$HttpsOutboundRequest has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$HttpsEndpointImpl has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$1 has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$HttpsConnection has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class BasicInvocationHandler$1 has different preferred state than outer class BasicInvocationHandler
     [java] Warning: Nested class ActivatableInvocationHandler$1 has different preferred state than outer class ActivatableInvocationHandler
     [java] Warning: Nested class ActivationGroup$1 has different preferred state than outer class ActivationGroup
     [java] Warning: Nested class ActivatableInvocationHandler$2 has different preferred state than outer class ActivatableInvocationHandler
     [java] Warning: Nested class ActivatableInvocationHandler$Failure has different preferred state than outer class ActivatableInvocationHandler
     [java] Warning: Nested class AuthenticationPermission$Data has different preferred state than outer class AuthenticationPermission
     [java] Warning: Nested class Security$5 has different preferred state than outer class Security
     [java] Warning: Nested class Security$4 has different preferred state than outer class Security
     [java] Warning: Nested class Security$SecurityContextImpl has different preferred state than outer class Security
     [java] Warning: Nested class PolicyFileProvider$1 has different preferred state than outer class PolicyFileProvider
     [java] Warning: Nested class DynamicPolicyProvider$2 has different preferred state than outer class DynamicPolicyProvider
     [java] Warning: Nested class DynamicPolicyProvider$1 has different preferred state than outer class DynamicPolicyProvider
     [java] Warning: Nested class ProxyTrustExporter$Reaper has different preferred state than outer class ProxyTrustExporter
     [java] Warning: Nested class ProxyTrustExporter$ProxyTrustImpl has different preferred state than outer class ProxyTrustExporter
     [java] Warning: Nested class ProxyTrustVerifier$7 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustVerifier$6 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustVerifier$3 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustVerifier$1 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustVerifier$5 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class BasicUntrustedObjectSecurityContext$1 has different preferred state than outer class BasicUntrustedObjectSecurityContext
     [java] Warning: Nested class ProxyTrustExporter$WeakRef has different preferred state than outer class ProxyTrustExporter
     [java] Warning: Nested class BasicUntrustedObjectSecurityContext$Combiner has different preferred state than outer class BasicUntrustedObjectSecurityContext
     [java] Warning: Nested class BasicUntrustedObjectSecurityContext$2 has different preferred state than outer class BasicUntrustedObjectSecurityContext
     [java] Warning: Nested class ProxyTrustVerifier$2 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustVerifier$4 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustVerifier$MOStream has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class Security$ClassContextAccess has different preferred state than outer class Security
     [java] Warning: Nested class GrantPermission$PermissionInfo has different preferred state than outer class GrantPermission
     [java] Warning: Nested class Security$7 has different preferred state than outer class Security
     [java] Warning: Nested class GrantPermission$Implier has different preferred state than outer class GrantPermission
     [java] Warning: Nested class Security$DistributedSubjectCombiner has different preferred state than outer class Security
     [java] Warning: Nested class Security$1 has different preferred state than outer class Security
     [java] Warning: Nested class Security$8 has different preferred state than outer class Security
     [java] Warning: Nested class Security$6 has different preferred state than outer class Security
     [java] Warning: Nested class Security$Context has different preferred state than outer class Security
     [java] Warning: Nested class Security$2 has different preferred state than outer class Security
     [java] Warning: Nested class GrantPermission$1 has different preferred state than outer class GrantPermission
     [java] Warning: Nested class Security$SubjectProtectionDomain has different preferred state than outer class Security
     [java] Warning: Nested class Security$3 has different preferred state than outer class Security
     [java] Warning: Nested class LookupLocator$1 has different preferred state than outer class LookupLocator
     [java] Warning: Nested class ConstrainableLookupLocator$1 has different preferred state than outer class ConstrainableLookupLocator
     [java] Warning: Nested class ServerContext$1 has different preferred state than outer class ServerContext
     [java] Warning: Nested class ClassLoading$1 has different preferred state than outer class ClassLoading
     [java] Warning: Nested class PreferredClassProvider$5 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassProvider$4 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassLoader$3 has different preferred state than outer class PreferredClassLoader
     [java] Warning: Nested class PreferredClassProvider$2 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassProvider$LoaderKey has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassProvider$3 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassLoader$4 has different preferred state than outer class PreferredClassLoader
     [java] Warning: Nested class PreferredClassProvider$1 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassLoader$2 has different preferred state than outer class PreferredClassLoader
     [java] Warning: Nested class PreferredClassLoader$1 has different preferred state than outer class PreferredClassLoader
     [java] Warning: Nested class ClassLoading$2 has different preferred state than outer class ClassLoading
     [java] Warning: Nested class BasicMethodConstraints$1 has different preferred state than outer class BasicMethodConstraints
     [java] Warning: Nested class RemotePolicyProvider$1 has different preferred state than outer class RemotePolicyProvider
     [java] Warning: Nested class Segment$Status has different preferred state than outer class Segment
     [java] Warning: Nested class ConcurrentPolicyFile$1 has different preferred state than outer class ConcurrentPolicyFile
     [java] Warning: Nested class DefaultPolicyScanner$InvalidFormatException has different preferred state than outer class DefaultPolicyScanner
     [java] Warning: Nested class CombinerSecurityManager$DelegateProtectionDomain has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class CombinerSecurityManager$DelegateDomainCombiner has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class DelegatePermission$SerializationProxy has different preferred state than outer class DelegatePermission
     [java] Warning: Nested class DelegatePermission$DelegatePermissionCollection has different preferred state than outer class DelegatePermission
     [java] Warning: Nested class ConcurrentPolicyFile$2 has different preferred state than outer class ConcurrentPolicyFile
     [java] Warning: Nested class CombinerSecurityManager$Action has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class RemotePolicyProvider$2 has different preferred state than outer class RemotePolicyProvider
     [java] Warning: Nested class ConcurrentPermissions$PermissionEnumerator$1 has different preferred state than outer class ConcurrentPermissions$PermissionEnumerator
     [java] Warning: Nested class CombinerSecurityManager$PermissionCheck has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class CombinerSecurityManager$1 has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class LogManager$Probe has different preferred state than outer class LogManager
     [java] Warning: Nested class DiscoveryV2$DatagramBuffers$DatagramInfo has different preferred state than outer class DiscoveryV2$DatagramBuffers
     [java] Warning: Nested class Client$ClientImpl has different preferred state than outer class Client
     [java] Warning: Nested class Server$ServerImpl has different preferred state than outer class Server
     [java] Warning: Nested class Server$ServerImpl has different preferred state than outer class Server
     [java] Warning: Nested class Client$ClientImpl has different preferred state than outer class Client
     [java] Warning: Nested class Server$ServerImpl has different preferred state than outer class Server
     [java] Warning: Nested class Client$ClientImpl has different preferred state than outer class Client
     [java] Warning: Nested class DiscoveryConstraints$ConnectionAbsoluteTimeReducer has different preferred state than outer class DiscoveryConstraints
     [java] Warning: Nested class Server$ServerImpl has different preferred state than outer class Server
     [java] Warning: Nested class Client$ClientImpl has different preferred state than outer class Client
     [java] Warning: Nested class DiscoveryConstraints$MulticastMaxPacketSizeReducer has different preferred state than outer class DiscoveryConstraints
     [java] Warning: Nested class DiscoveryConstraints$ConstraintReducer has different preferred state than outer class DiscoveryConstraints
     [java] Warning: Nested class DiscoveryConstraints$MaxValueReducer has different preferred state than outer class DiscoveryConstraints

jarwrapper.jar:

checkconfigurationfile.jar:

checkser.jar:

classdep.jar:

classserver.jar:

computedigest.jar:

computehttpmdcodebase.jar:

jsk-debug-policy.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib-ext/jsk-debug-policy.jar

preferredlistgen.jar:

envcheck.jar:
      [jar] Updating jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib/envcheck.jar

toolswrappers.jars:

destroy.jar:
     [java] Warning: Class not found: au.net.zeus.collection.RC
     [java] Warning: Class not found: au.net.zeus.collection.Ref
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib/destroy.jar

fiddler.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib/fiddler.jar

fiddler-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib-dl/fiddler-dl.jar

group.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib/group.jar

group-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib-dl/group-dl.jar

mahalo.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib/mahalo.jar

mahalo-dl.jar:
      [jar] Building jar: /zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/lib-dl/mahalo-dl.jar

mercury.jar:

BUILD FAILED
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/hudson.xml:85: The following error occurred while executing this line:
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/qa/build.xml:144: The following error occurred while executing this line:
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/build.xml:1473: The following error occurred while executing this line:
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/common.xml:249: java.io.IOException: Cannot run program "/zonestorage/hudson_solaris/home/hudson/tools/java/jdk1.7.0/jre/bin/java": error=12, Not enough space
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
	at java.lang.Runtime.exec(Runtime.java:615)
	at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:862)
	at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
	at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
	at org.apache.tools.ant.taskdefs.Java.fork(Java.java:791)
	at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:214)
	at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:135)
	at org.apache.tools.ant.taskdefs.Java.execute(Java.java:108)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:68)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:398)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
	at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.Main.runBuild(Main.java:809)
	at org.apache.tools.ant.Main.startAnt(Main.java:217)
	at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
	at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)
Caused by: java.io.IOException: error=12, Not enough space
	at java.lang.UNIXProcess.forkAndExec(Native Method)
	at java.lang.UNIXProcess.<init>(UNIXProcess.java:79)
	at java.lang.ProcessImpl.start(ProcessImpl.java:130)
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:1021)
	... 63 more

Total time: 1 minute 29 seconds
Build step 'Invoke Ant' marked build as failure
Archiving artifacts

Build failed in Jenkins: River-QA-tree #88

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/River-QA-tree/88/changes>

Changes:

[sijskes] renamed target

[sijskes] fetch qa-tree

[sijskes] starting point

[sijskes] scripts to drive qa-matrix job

------------------------------------------
[...truncated 7097 lines...]
     [java] Warning: Nested class LogManager$Probe has different preferred state than outer class LogManager
     [java] Warning: Nested class DiscoveryConstraints$ConnectionAbsoluteTimeReducer has different preferred state than outer class DiscoveryConstraints
     [java] Warning: Nested class DiscoveryConstraints$MaxValueReducer has different preferred state than outer class DiscoveryConstraints
     [java] Warning: Nested class DiscoveryConstraints$MulticastMaxPacketSizeReducer has different preferred state than outer class DiscoveryConstraints
     [java] Warning: Nested class Server$ServerImpl has different preferred state than outer class Server
     [java] Warning: Nested class Client$ClientImpl has different preferred state than outer class Client
     [java] Warning: Nested class Client$ClientImpl has different preferred state than outer class Client
     [java] Warning: Nested class Server$ServerImpl has different preferred state than outer class Server
     [java] Warning: Nested class Client$ClientImpl has different preferred state than outer class Client
     [java] Warning: Nested class Server$ServerImpl has different preferred state than outer class Server
     [java] Warning: Nested class DiscoveryConstraints$ConstraintReducer has different preferred state than outer class DiscoveryConstraints
     [java] Warning: Nested class Server$ServerImpl has different preferred state than outer class Server
     [java] Warning: Nested class Client$ClientImpl has different preferred state than outer class Client
     [java] Warning: Nested class GrantPermission$Implier has different preferred state than outer class GrantPermission
     [java] Warning: Nested class Security$SubjectProtectionDomain has different preferred state than outer class Security
     [java] Warning: Nested class Security$1 has different preferred state than outer class Security
     [java] Warning: Nested class AuthenticationPermission$Data has different preferred state than outer class AuthenticationPermission
     [java] Warning: Nested class Security$8 has different preferred state than outer class Security
     [java] Warning: Nested class ProxyTrustVerifier$2 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustVerifier$5 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class BasicUntrustedObjectSecurityContext$1 has different preferred state than outer class BasicUntrustedObjectSecurityContext
     [java] Warning: Nested class BasicUntrustedObjectSecurityContext$Combiner has different preferred state than outer class BasicUntrustedObjectSecurityContext
     [java] Warning: Nested class ProxyTrustVerifier$6 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustVerifier$MOStream has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustExporter$ProxyTrustImpl has different preferred state than outer class ProxyTrustExporter
     [java] Warning: Nested class ProxyTrustVerifier$3 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustExporter$WeakRef has different preferred state than outer class ProxyTrustExporter
     [java] Warning: Nested class ProxyTrustVerifier$4 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class BasicUntrustedObjectSecurityContext$2 has different preferred state than outer class BasicUntrustedObjectSecurityContext
     [java] Warning: Nested class ProxyTrustVerifier$7 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class ProxyTrustExporter$Reaper has different preferred state than outer class ProxyTrustExporter
     [java] Warning: Nested class ProxyTrustVerifier$1 has different preferred state than outer class ProxyTrustVerifier
     [java] Warning: Nested class GrantPermission$1 has different preferred state than outer class GrantPermission
     [java] Warning: Nested class Security$SecurityContextImpl has different preferred state than outer class Security
     [java] Warning: Nested class Security$6 has different preferred state than outer class Security
     [java] Warning: Nested class DynamicPolicyProvider$2 has different preferred state than outer class DynamicPolicyProvider
     [java] Warning: Nested class PolicyFileProvider$1 has different preferred state than outer class PolicyFileProvider
     [java] Warning: Nested class DynamicPolicyProvider$1 has different preferred state than outer class DynamicPolicyProvider
     [java] Warning: Nested class Security$4 has different preferred state than outer class Security
     [java] Warning: Nested class Security$3 has different preferred state than outer class Security
     [java] Warning: Nested class GrantPermission$PermissionInfo has different preferred state than outer class GrantPermission
     [java] Warning: Nested class Security$Context has different preferred state than outer class Security
     [java] Warning: Nested class Security$5 has different preferred state than outer class Security
     [java] Warning: Nested class Security$2 has different preferred state than outer class Security
     [java] Warning: Nested class Security$ClassContextAccess has different preferred state than outer class Security
     [java] Warning: Nested class Security$DistributedSubjectCombiner has different preferred state than outer class Security
     [java] Warning: Nested class Security$7 has different preferred state than outer class Security
     [java] Warning: Nested class ClassLoading$1 has different preferred state than outer class ClassLoading
     [java] Warning: Nested class ClassLoading$2 has different preferred state than outer class ClassLoading
     [java] Warning: Nested class PreferredClassLoader$3 has different preferred state than outer class PreferredClassLoader
     [java] Warning: Nested class PreferredClassProvider$2 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassLoader$1 has different preferred state than outer class PreferredClassLoader
     [java] Warning: Nested class PreferredClassLoader$4 has different preferred state than outer class PreferredClassLoader
     [java] Warning: Nested class PreferredClassProvider$4 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassLoader$2 has different preferred state than outer class PreferredClassLoader
     [java] Warning: Nested class PreferredClassProvider$LoaderKey has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassProvider$3 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassProvider$5 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class PreferredClassProvider$1 has different preferred state than outer class PreferredClassProvider
     [java] Warning: Nested class ActivatableInvocationHandler$Failure has different preferred state than outer class ActivatableInvocationHandler
     [java] Warning: Nested class ActivatableInvocationHandler$1 has different preferred state than outer class ActivatableInvocationHandler
     [java] Warning: Nested class ActivatableInvocationHandler$2 has different preferred state than outer class ActivatableInvocationHandler
     [java] Warning: Nested class ActivationGroup$1 has different preferred state than outer class ActivationGroup
     [java] Warning: Nested class ConstrainableLookupLocator$1 has different preferred state than outer class ConstrainableLookupLocator
     [java] Warning: Nested class BasicObjectEndpoint$AckListener has different preferred state than outer class BasicObjectEndpoint
     [java] Warning: Nested class BasicInvocationHandler$1 has different preferred state than outer class BasicInvocationHandler
     [java] Warning: Nested class BasicInvocationDispatcher$1 has different preferred state than outer class BasicInvocationDispatcher
     [java] Warning: Nested class BasicInvocationHandler$Failure has different preferred state than outer class BasicInvocationHandler
     [java] Warning: Nested class BasicJeriTrustVerifier$1 has different preferred state than outer class BasicJeriTrustVerifier
     [java] Warning: Nested class BasicJeriExporter$ImplContainer has different preferred state than outer class BasicJeriExporter
     [java] Warning: Nested class BasicObjectEndpoint$1 has different preferred state than outer class BasicObjectEndpoint
     [java] Warning: Nested class AbstractILFactory$1 has different preferred state than outer class AbstractILFactory
     [java] Warning: Nested class ServerConnectionManager$InboundMux has different preferred state than outer class ServerConnectionManager
     [java] Warning: Nested class ConnectionManager$OutboundMux has different preferred state than outer class ConnectionManager
     [java] Warning: Nested class ConnectionManager$Reaper has different preferred state than outer class ConnectionManager
     [java] Warning: Nested class ConnectionManager$Outbound has different preferred state than outer class ConnectionManager
     [java] Warning: Nested class ConnectionManager$ReqIterator has different preferred state than outer class ConnectionManager
     [java] Warning: Nested class ServerConnectionManager$Dispatcher has different preferred state than outer class ServerConnectionManager
     [java] Warning: Nested class ServerConnectionManager$Inbound has different preferred state than outer class ServerConnectionManager
     [java] Warning: Nested class HttpsServerEndpoint$HttpsServerEndpointImpl has different preferred state than outer class HttpsServerEndpoint
     [java] Warning: Nested class HttpsEndpoint$HttpsOutboundRequest has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$HttpsConnection has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$Reaper has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class SslEndpoint$SslEndpointInternals has different preferred state than outer class SslEndpoint
     [java] Warning: Nested class HttpsEndpoint$HttpClient has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$1 has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsEndpoint$EndpointInfo has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpsServerEndpoint$1 has different preferred state than outer class HttpsServerEndpoint
     [java] Warning: Nested class HttpsEndpoint$HttpsEndpointImpl has different preferred state than outer class HttpsEndpoint
     [java] Warning: Nested class HttpServerEndpoint$LH has different preferred state than outer class HttpServerEndpoint
     [java] Warning: Nested class HttpEndpoint$4 has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpEndpoint$Connection has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpEndpoint$ConnectionAction has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpEndpoint$1 has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpServerEndpoint$1 has different preferred state than outer class HttpServerEndpoint
     [java] Warning: Nested class HttpEndpoint$SocketFactoryAdapter has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpEndpoint$6 has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpEndpoint$5 has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpEndpoint$2 has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpEndpoint$3 has different preferred state than outer class HttpEndpoint
     [java] Warning: Nested class HttpServerEndpoint$LE has different preferred state than outer class HttpServerEndpoint
     [java] Warning: Nested class BasicInvocationDispatcher$2 has different preferred state than outer class BasicInvocationDispatcher
     [java] Warning: Nested class TcpEndpoint$Handle has different preferred state than outer class TcpEndpoint
     [java] Warning: Nested class TcpServerEndpoint$LH has different preferred state than outer class TcpServerEndpoint
     [java] Warning: Nested class TcpEndpoint$ConnectionEndpointImpl has different preferred state than outer class TcpEndpoint
     [java] Warning: Nested class TcpEndpoint$ConnectionImpl has different preferred state than outer class TcpEndpoint
     [java] Warning: Nested class TcpServerEndpoint$LE has different preferred state than outer class TcpServerEndpoint
     [java] Warning: Nested class TcpEndpoint$1 has different preferred state than outer class TcpEndpoint
     [java] Warning: Nested class TcpServerEndpoint$1 has different preferred state than outer class TcpServerEndpoint
     [java] Warning: Nested class BasicObjectEndpoint$DgcBatchContext has different preferred state than outer class BasicObjectEndpoint
     [java] Warning: Nested class KerberosEndpoint$CacheKey has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ConnectionHandler has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosEndpoint$RequestHandleImpl has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosEndpoint$ConnectionEndpointImpl has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$3 has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ListenHandleImpl has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$1 has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosEndpoint$KerberosEndpointInternals has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosEndpoint$ConnectionImpl has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ListenCookieImpl has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$2 has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosEndpoint$1 has different preferred state than outer class KerberosEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ServerConnectionImpl has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class KerberosServerEndpoint$ListenEndpointImpl has different preferred state than outer class KerberosServerEndpoint
     [java] Warning: Nested class HttpmdUtil$1 has different preferred state than outer class HttpmdUtil
     [java] Warning: Nested class ServerContext$1 has different preferred state than outer class ServerContext
     [java] Warning: Nested class UuidFactory$Impl has different preferred state than outer class UuidFactory
     [java] Warning: Nested class Configuration$2 has different preferred state than outer class Configuration
     [java] Warning: Nested class ConfigurationFile$Call has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$NameRef has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$ArrayConstructor has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$StringLiteral has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$Parser has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$MethodCall has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$ThisRef has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$Entry has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$PushbackStreamTokenizer has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$StringConcatenation has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationProvider$2 has different preferred state than outer class ConfigurationProvider
     [java] Warning: Nested class ConfigurationFile$1 has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$Cast has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$Literal has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$ConstructorCall has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class ConfigurationFile$ParseNode has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class Configuration$1 has different preferred state than outer class Configuration
     [java] Warning: Nested class ConfigurationProvider$1 has different preferred state than outer class ConfigurationProvider
     [java] Warning: Nested class ConfigurationFile$ClassLiteral has different preferred state than outer class ConfigurationFile
     [java] Warning: Nested class MarshalledInstance$ToMOInputStream has different preferred state than outer class MarshalledInstance
     [java] Warning: Nested class MarshalledInstance$MarshalledInstanceInputStream has different preferred state than outer class MarshalledInstance
     [java] Warning: Nested class MarshalledInstance$FromMOInputStream has different preferred state than outer class MarshalledInstance
     [java] Warning: Nested class MarshalledInstance$1 has different preferred state than outer class MarshalledInstance
     [java] Warning: Nested class MarshalledInstance$MarshalledInstanceOutputStream has different preferred state than outer class MarshalledInstance
     [java] Warning: Nested class LookupLocator$1 has different preferred state than outer class LookupLocator
     [java] Warning: Nested class BasicMethodConstraints$1 has different preferred state than outer class BasicMethodConstraints
     [java] Warning: Nested class RemotePolicyProvider$1 has different preferred state than outer class RemotePolicyProvider
     [java] Warning: Nested class CombinerSecurityManager$DelegateProtectionDomain has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class DelegatePermission$SerializationProxy has different preferred state than outer class DelegatePermission
     [java] Warning: Nested class CombinerSecurityManager$PermissionCheck has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class CombinerSecurityManager$DelegateDomainCombiner has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class RemotePolicyProvider$2 has different preferred state than outer class RemotePolicyProvider
     [java] Warning: Nested class DefaultPolicyScanner$InvalidFormatException has different preferred state than outer class DefaultPolicyScanner
     [java] Warning: Nested class DelegatePermission$DelegatePermissionCollection has different preferred state than outer class DelegatePermission
     [java] Warning: Nested class CombinerSecurityManager$Action has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class Segment$Status has different preferred state than outer class Segment
     [java] Warning: Nested class ConcurrentPolicyFile$2 has different preferred state than outer class ConcurrentPolicyFile
     [java] Warning: Nested class CombinerSecurityManager$1 has different preferred state than outer class CombinerSecurityManager
     [java] Warning: Nested class ConcurrentPolicyFile$1 has different preferred state than outer class ConcurrentPolicyFile

jsk-policy.jar:

BUILD FAILED
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/hudson.xml:85: The following error occurred while executing this line:
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/qa/build.xml:144: The following error occurred while executing this line:
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/build.xml:899: The following error occurred while executing this line:
/zonestorage/hudson_solaris/home/hudson/hudson-slave/workspace/River-QA-tree/jtsk/trunk/common.xml:249: java.io.IOException: Cannot run program "/zonestorage/hudson_solaris/home/hudson/tools/java/jdk1.7.0/jre/bin/java": error=12, Not enough space
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
	at java.lang.Runtime.exec(Runtime.java:615)
	at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:862)
	at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
	at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
	at org.apache.tools.ant.taskdefs.Java.fork(Java.java:791)
	at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:214)
	at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:135)
	at org.apache.tools.ant.taskdefs.Java.execute(Java.java:108)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:68)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:398)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
	at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
	at org.apache.tools.ant.Task.perform(Task.java:348)
	at org.apache.tools.ant.Target.execute(Target.java:390)
	at org.apache.tools.ant.Target.performTasks(Target.java:411)
	at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
	at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
	at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
	at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
	at org.apache.tools.ant.Main.runBuild(Main.java:809)
	at org.apache.tools.ant.Main.startAnt(Main.java:217)
	at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
	at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)
Caused by: java.io.IOException: error=12, Not enough space
	at java.lang.UNIXProcess.forkAndExec(Native Method)
	at java.lang.UNIXProcess.<init>(UNIXProcess.java:79)
	at java.lang.ProcessImpl.start(ProcessImpl.java:130)
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:1021)
	... 63 more

Total time: 3 minutes 28 seconds
Build step 'Invoke Ant' marked build as failure
Archiving artifacts