You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@qpid.apache.org by Apache Jenkins Server <je...@builds.apache.org> on 2012/07/12 03:12:28 UTC

Build failed in Jenkins: Qpid-Java-Cpp-Test #822

See <https://builds.apache.org/job/Qpid-Java-Cpp-Test/822/changes>

Changes:

[aconway] NO-JIRA: HA doc: Add overview of avoiding message loss.

[aconway] NO-JIRA: Fixed compile error on RHEL5: double doesn't convert to int64_t

[aconway] QPID-4128: Remove use of intrusive_ptr::reset, not available in older boost versions.

[chug] QPID-4129 Cluster connection leak when auth failure. This patch closes local connection, releases broker::Connection, and fixes ConnectionCounter resource accounting.

[robbie] QPID-3998, QPID-3999: System tests for Rest API, small fixups for the adapters and web ui.

Applied patch from Oleksandr Rudyy <or...@gmail.com>

[robbie] QPID-3998, QPID-3999: get the user name from HttpServletRequest#getRemoteUser() in SaslServlet

Applied patch from Oleksandr Rudyy <or...@gmail.com>

[robbie] NO-JIRA: add some logging around the DtxBranch timeout functionality to aid debugging

[aconway] QPID-4128: HA should not use amq.failover for replication links

HA replication links should not use the amq.failover exchange to get updates
reconnect targets. amq.failover provides the client failover list, HA manages a
separate failover list for brokers. Replication links should be using the broker
list, and not allow it to be overwritten by amq.failover updates.

Review requested for 0.18, 2 line fix.

[aconway] QPID-4126: HA primary times out expected backups.

After a failure, the newly-promoted primary broker guards messages for each of
the backups that were connected at the time of the failure. It waits for them to
reconnect to the new primary before becoming active.

This patch introduces a time-out so that if an expected backup fails to
fail-over within the time limit, the primary will cancel the guards for that
backup and carry on.

[gsim] QPID-4127: Ensure SystemInfo::isLocalHost() returns true for ::1

[rgodfrey] QPID-4125 : [Java Broker] allow coalescing of commits for multiple channels on same connection

[kwall] QPID-4121: AMQProtocolEngine now uses lock to prevent the thread-unsafe use of AMQChannel's transaction which caused it to throw a ConcurrentModificationException.

Applied patch from Philip Harvey <ph...@philharveyonline.com> and Keith Wall <kw...@apache.org>.

[kwall] QPID-4114: added missing commons-logging dependency to perftests module for us by release-bin target

Applied patch from Philip Harvey <ph...@philharveyonline.com>

[aconway] QPID-4118: HA does not work with authentication and authorization.

- Updated test framework to use credentials
- Updated BrokerReplicator to use HA identity to create configuration
- Updated documentation with a HA security section.
- Updated qpid-ha to take --sasl-mechanism

[jross] QPID-4111: Move trunk version numbers to 0.19

[gsim] QPID-3757: clean up demux when subscription manager is destroyed

[robbie] QPID-4111: update release.sh to account for new java broker release artifacts

[robbie] QPID-3923, QPID-3998: split out the IDs used for QMF (which have a different format) from those for the new config model, make it clearer which is being used where

[robbie] QPID-3923, QPID-3998: update the Adapter layer to either use UUIDGenerator itself, or use the ID directly from the entity being adapted

[robbie] QPID-3998, QPID-3999, QPID-4093: rename new plugins

[robbie] QPID-4113: no longer caching duration override because it broke inter-test isolation.

Applied patch from Philip Harvey <ph...@philharveyonline.com>

[gsim] QPID-4117: honour alternate-exchange option specified within x-declare for a link

[robbie] QPID-4113: added support for a system property to override all participant durations.

Applied patch from Philip Harvey <ph...@philharveyonline.com>

[robbie] QPID-4114: add a release-bin target to perftests so we can create a deployable tar.gz file.

Applied patch from Philip Harvey <ph...@philharveyonline.com>

[astitcher] QPID-3883: Using application headers in messages causes a very large slowdown
Add subject to outgoing messsage before encoding it to save a round trip
decode-encode.

[astitcher] QPID-3883: Using application headers in messages causes a very large slowdown
Encode Variants directly without translating to FieldTables

[astitcher] NO-JIRA: Changed VariantImpl to use a union more sensibly and avoid ugly and potentially
buggy reinterpret_casts.

[astitcher] NO-JIRA: Fix previous TimerTask fix to workaround stupid windows.h symbol corruption

[kwall] QPID-4110: Java Performamce Tests. Cleaning up the subscriptions map at the end of
each test so we don't try to unsubscribe them again after subsequent tests

Applied patch from Philip Harvey <ph...@philharveyonline.com>

[kwall] QPID-4093: [Java Broker] Prevent new queues and exchanges from being created on vhosts that are not active

[kwall] QPID-4093: Prevent NullPointerException from ExchangeMBean when target queue does not exist

[kwall] QPID-4112: Virtualhosts recover exchanges before queues

Switch the recover order from queues,exchanges,... to exchanges,queues,.. so that when a queue with an alternate exchange
is recovered, the exchange's uuid is already in the registry.

[astitcher] QPID-4101: Fixes building the Ruby language bindings for Ruby 1.9

Applied lightly modified patch from Darryl Pierce

[aconway] QPID-4085: HA review and fix lock scopes.

[aconway] NO-JIRA: Remove dead code.

[aconway] QPID-4085: HA failover test: wait for all receivers to be connected.

[aconway] QPID-4085: HA add missing lock in HaBroker::getKnownBrokers()

[aconway] QPID-4085: HA failover test: client failure: "connection not yet open"

Sporadic failure of ha_tests.LongTests.test_failover_send_receive with client error.
"connection not yet open". Fixed by replacing Exception with TransportFailure
so reconnect logic will apply.

[aconway] QPID-4085: HA message-loss race condition, handling replication event after response.

If the backup broker receives a declare event for a queue after receiving a
queue response for the same queue, it removes the queue and replaces it with the
new one from the reponse. Previously it did not remove the corresponding bridge
so things fail when we attempt to create it. Corrected to remove the bridge also.

[astitcher] NO-JIRA: Fix for potential Timer deadlock issue:
- Previously we used a mutex to prevent cancelling a TimerTask whilst it
  was still executing from within its callback in another thread.

  This violates the principle that you shouldn't hold locks when calling
  the arbitrary code in a callback, and so is subject to potential
  deadlock problems.

- This fix only works if no timer callback calls TimerTask::cancel();
  this is true with the current code. And there is no good reason to
  call cancel() from within a callback, as cancel is the default
  behviour in any case - you have to specifically reschedule a
  recurring timer.

[kwall] QPID-3977: tidy up chart generation.

Specifically:
- chart-summary.html now shows charts in deterministic order (dictated by the chart file names)
- We now only have one set of test definitions rather than maintaining both short and standard sets of files. We will use QPID-4103 to adjust the durations across the board.
- Charts have been given subtitles, and sloping CategoryLabelPositions to Plots that aren't CategoryPlots.  Also added test for statistical bar charts to ChartProductionTest.

Applied patch from Philip Harvey <ph...@philharveyonline.com>

[kwall] QPID-4110 added topic support to performance tests.

Specifically:
- Added support for creating and tearing down durable subscriptions
- Improved IterationValueTest so that we test the format for boolean properties (such as durableSubscription)
- Added test and chart definitions

Applied patch from Philip Harvey <ph...@philharveyonline.com>

------------------------------------------
[...truncated 13552 lines...]
precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:

test:
     [echo] Using profile:cpp
    [junit] Running org.apache.qpid.server.security.access.plugins.AccessControlTest
    [junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed: 0.157 sec
    [junit] Running org.apache.qpid.server.security.access.plugins.PlainConfigurationTest
    [junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 0.039 sec
    [junit] Running org.apache.qpid.server.security.access.plugins.RuleSetTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.012 sec
     [echo] Running ant for module : broker-plugins/access-control
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build/scratch/test-cpp.properties>

touch-failed:
     [echo] Running ant for module : broker-plugins/firewall
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build/scratch/test-cpp.properties>

prepare:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:

test:
     [echo] Using profile:cpp
    [junit] Running org.apache.qpid.server.security.access.FirewallConfigurationTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.05 sec
    [junit] Running org.apache.qpid.server.security.access.FirewallPluginTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.014 sec
     [echo] Running ant for module : broker-plugins/firewall
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build/scratch/test-cpp.properties>

touch-failed:
     [echo] Running ant for module : broker-plugins/management-http
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build/scratch/test-cpp.properties>

prepare:

precompile:
    [unwar] Expanding: <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/lib/required/dojo-war-1.7.2.war> into <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build/scratch/broker-plugins/management-http/classes/resources/dojo>

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:

test:
     [echo] Using profile:cpp
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.AuthenticationProviderRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.BindingRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.012 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.BrokerRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.01 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.ConnectionRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.01 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.ExchangeRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.01 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.LogRecordsRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.01 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.MessagesRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.PortRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.QueueRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.009 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.SaslRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.StructureRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.UserRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.VirtualHostRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.007 sec
     [echo] Running ant for module : broker-plugins/management-http
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build/scratch/test-cpp.properties>

touch-failed:
     [echo] Running ant for module : broker-plugins/management-jmx
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build/scratch/test-cpp.properties>

prepare:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:

test:
     [echo] Using profile:cpp
    [junit] Running org.apache.qpid.server.jmx.mbeans.ConnectionMBeanTest
    [junit] Tests run: 16, Failures: 0, Errors: 0, Time elapsed: 0.559 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.ExchangeMBeanTest
    [junit] Tests run: 10, Failures: 0, Errors: 0, Time elapsed: 0.098 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.LoggingManagementMBeanTest
    [junit] Tests run: 20, Failures: 0, Errors: 0, Time elapsed: 0.065 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.QueueMBeanTest
    [junit] Tests run: 38, Failures: 0, Errors: 0, Time elapsed: 0.196 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.ServerInformationMBeanTest
    [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.033 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.UserManagementMBeanTest
    [junit] Tests run: 10, Failures: 0, Errors: 0, Time elapsed: 0.048 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.VirtualHostManagerMBeanTest
    [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.062 sec
    [junit] Running org.apache.qpid.systest.management.jmx.BrokerManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
    [junit] Running org.apache.qpid.systest.management.jmx.ConnectionManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.007 sec
    [junit] Running org.apache.qpid.systest.management.jmx.LoggingManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.systest.management.jmx.ManagementActorLoggingTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.systest.management.jmx.ManagementLoggingTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.systest.management.jmx.QueueManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.systest.management.jmx.StatisticsTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
    [junit] Running org.apache.qpid.systest.management.jmx.UserManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.003 sec
    [junit] Running org.apache.qpid.systest.management.jmx.UserManagementWithBase64MD5PasswordsTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.003 sec
     [echo] Running ant for module : broker-plugins/management-jmx
   [delete] Deleting: <https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build/scratch/test-cpp.properties>

touch-failed:

BUILD FAILED
<https://builds.apache.org/job/Qpid-Java-Cpp-Test/ws/trunk/qpid/java/build.xml>:99: TEST SUITE FAILED

Total time: 7 minutes 45 seconds
Build step 'Invoke Ant' marked build as failure
[locks-and-latches] Releasing all the locks
[locks-and-latches] All the locks released
Recording test results

Jenkins build is back to normal : Qpid-Java-Cpp-Test #824

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/Qpid-Java-Cpp-Test/824/changes>


Build failed in Jenkins: Qpid-Java-Cpp-Test #823

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/Qpid-Java-Cpp-Test/823/>

------------------------------------------
[...truncated 13542 lines...]
precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:

test:
     [echo] Using profile:cpp
    [junit] Running org.apache.qpid.server.security.access.plugins.AccessControlTest
    [junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed: 0.117 sec
    [junit] Running org.apache.qpid.server.security.access.plugins.PlainConfigurationTest
    [junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 0.05 sec
    [junit] Running org.apache.qpid.server.security.access.plugins.RuleSetTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.009 sec
     [echo] Running ant for module : broker-plugins/access-control
   [delete] Deleting: /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build/scratch/test-cpp.properties

touch-failed:
     [echo] Running ant for module : broker-plugins/firewall
   [delete] Deleting: /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build/scratch/test-cpp.properties

prepare:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:

test:
     [echo] Using profile:cpp
    [junit] Running org.apache.qpid.server.security.access.FirewallConfigurationTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.046 sec
    [junit] Running org.apache.qpid.server.security.access.FirewallPluginTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.011 sec
     [echo] Running ant for module : broker-plugins/firewall
   [delete] Deleting: /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build/scratch/test-cpp.properties

touch-failed:
     [echo] Running ant for module : broker-plugins/management-http
   [delete] Deleting: /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build/scratch/test-cpp.properties

prepare:

precompile:
    [unwar] Expanding: /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/lib/required/dojo-war-1.7.2.war into /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build/scratch/broker-plugins/management-http/classes/resources/dojo

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:

test:
     [echo] Using profile:cpp
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.AuthenticationProviderRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.035 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.BindingRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.009 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.BrokerRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.01 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.ConnectionRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.ExchangeRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.LogRecordsRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.007 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.MessagesRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.007 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.PortRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.007 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.QueueRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.SaslRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.007 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.StructureRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.UserRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.007 sec
    [junit] Running org.apache.qpid.server.management.plugin.servlet.rest.VirtualHostRestTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
     [echo] Running ant for module : broker-plugins/management-http
   [delete] Deleting: /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build/scratch/test-cpp.properties

touch-failed:
     [echo] Running ant for module : broker-plugins/management-jmx
   [delete] Deleting: /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build/scratch/test-cpp.properties

prepare:

precompile:

compile:
     [echo] Targeting : 1.5

copy-metainf-resources:

copy-module-metainf:

jar.manifest:

jar.nomanifest:

jar:

precompile-tests:

compile-tests:

jar-tests:

jar-sources:

libs:

copy-bin:

copy-etc:

postbuild:

build:

test:
     [echo] Using profile:cpp
    [junit] Running org.apache.qpid.server.jmx.mbeans.ConnectionMBeanTest
    [junit] Tests run: 16, Failures: 0, Errors: 0, Time elapsed: 0.518 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.ExchangeMBeanTest
    [junit] Tests run: 10, Failures: 0, Errors: 0, Time elapsed: 0.09 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.LoggingManagementMBeanTest
    [junit] Tests run: 20, Failures: 0, Errors: 0, Time elapsed: 0.051 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.QueueMBeanTest
    [junit] Tests run: 38, Failures: 0, Errors: 0, Time elapsed: 0.151 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.ServerInformationMBeanTest
    [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.034 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.UserManagementMBeanTest
    [junit] Tests run: 10, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
    [junit] Running org.apache.qpid.server.jmx.mbeans.VirtualHostManagerMBeanTest
    [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.046 sec
    [junit] Running org.apache.qpid.systest.management.jmx.BrokerManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
    [junit] Running org.apache.qpid.systest.management.jmx.ConnectionManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
    [junit] Running org.apache.qpid.systest.management.jmx.LoggingManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
    [junit] Running org.apache.qpid.systest.management.jmx.ManagementActorLoggingTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.systest.management.jmx.ManagementLoggingTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
    [junit] Running org.apache.qpid.systest.management.jmx.QueueManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.006 sec
    [junit] Running org.apache.qpid.systest.management.jmx.StatisticsTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.004 sec
    [junit] Running org.apache.qpid.systest.management.jmx.UserManagementTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.004 sec
    [junit] Running org.apache.qpid.systest.management.jmx.UserManagementWithBase64MD5PasswordsTest
    [junit] Tests run: 0, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
     [echo] Running ant for module : broker-plugins/management-jmx
   [delete] Deleting: /x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build/scratch/test-cpp.properties

touch-failed:

BUILD FAILED
/x1/jenkins/jenkins-slave/workspace/Qpid-Java-Cpp-Test/trunk/qpid/java/build.xml:99: TEST SUITE FAILED

Total time: 7 minutes 43 seconds
Build step 'Invoke Ant' marked build as failure
[locks-and-latches] Releasing all the locks
[locks-and-latches] All the locks released
Recording test results