See <https://builds.apache.org/job/ACE-trunk/265/changes>

Changes:

[marrs] ACE-493 Fixed the issue and added some tests for it.

------------------------------------------
[...truncated 4502 lines...]
    [javac]                   ^^^
    [javac] Map is a raw type. References to generic type Map<K,V> should be 
parameterized
    [javac] ----------
    [javac] 56. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/Activator.java>
 (at line 44)
    [javac]     private final Map /*<String, Component>*/ m_instances = new 
HashMap();
    [javac]                                                                 
^^^^^^^
    [javac] HashMap is a raw type. References to generic type HashMap<K,V> 
should be parameterized
    [javac] ----------
    [javac] 57. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/Activator.java>
 (at line 91)
    [javac]     public void updated(String pid, Dictionary dict) throws 
ConfigurationException {
    [javac]                                     ^^^^^^^^^^
    [javac] Dictionary is a raw type. References to generic type 
Dictionary<K,V> should be parameterized
    [javac] ----------
    [javac] 58. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/Activator.java>
 (at line 120)
    [javac]     m_instances.put(pid, component);
    [javac]     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    [javac] Type safety: The method put(Object, Object) belongs to the raw type 
Map. References to generic type Map<K,V> should be parameterized
    [javac] ----------
    [javac] ----------
    [javac] 59. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 152)
    [javac]     public synchronized List get(long logID, long from, long to)
    [javac]                         ^^^^
    [javac] List is a raw type. References to generic type List<E> should be 
parameterized
    [javac] ----------
    [javac] 60. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 155)
    [javac]     List result = new ArrayList();
    [javac]     ^^^^
    [javac] List is a raw type. References to generic type List<E> should be 
parameterized
    [javac] ----------
    [javac] 61. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 155)
    [javac]     List result = new ArrayList();
    [javac]                       ^^^^^^^^^
    [javac] ArrayList is a raw type. References to generic type ArrayList<E> 
should be parameterized
    [javac] ----------
    [javac] 62. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 164)
    [javac]     result.add(new Event(new String(store.read())));
    [javac]     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    [javac] Type safety: The method add(Object) belongs to the raw type List. 
References to generic type List<E> should be parameterized
    [javac] ----------
    [javac] 63. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 228)
    [javac]     public List get(long logID) throws IOException {
    [javac]            ^^^^
    [javac] List is a raw type. References to generic type List<E> should be 
parameterized
    [javac] ----------
    [javac] 64. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 257)
    [javac]     public synchronized Event put(int type, Dictionary dict) throws 
IOException {
    [javac]                                             ^^^^^^^^^^
    [javac] Dictionary is a raw type. References to generic type 
Dictionary<K,V> should be parameterized
    [javac] ----------
    [javac] 65. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 260)
    [javac]     Enumeration keys = dict.keys();
    [javac]     ^^^^^^^^^^^
    [javac] Enumeration is a raw type. References to generic type 
Enumeration<E> should be parameterized
    [javac] ----------
    [javac] 66. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 445)
    [javac]     long id = m_store.readLong();
    [javac]          ^^
    [javac] The value of the local variable id is not used
    [javac] ----------
    [javac] 67. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 502)
    [javac]     long id = m_store.readLong();
    [javac]          ^^
    [javac] The value of the local variable id is not used
    [javac] ----------
    [javac] 68. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/store/impl/LogStoreImpl.java>
 (at line 528)
    [javac]     long current = m_store.getFilePointer();
    [javac]          ^^^^^^^
    [javac] The value of the local variable current is not used
    [javac] ----------
    [javac] ----------
    [javac] 69. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/task/LogSyncTask.java>
 (at line 152)
    [javac]     List events = m_LogStore.get(logID, lowest, highestLocal > 
highest ? highest : highestLocal);
    [javac]     ^^^^
    [javac] List is a raw type. References to generic type List<E> should be 
parameterized
    [javac] ----------
    [javac] 70. WARNING in 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/src/org/apache/ace/log/target/task/LogSyncTask.java>
 (at line 153)
    [javac]     Iterator iter = events.iterator();
    [javac]     ^^^^^^^^
    [javac] Iterator is a raw type. References to generic type Iterator<E> 
should be parameterized
    [javac] ----------
    [javac] 70 problems (70 warnings)
     [copy] Copying 3 files to 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/bin>
     [copy] Copied 1 empty directory to 1 empty directory under 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/bin>

build:

compileTests:
    [mkdir] Created dir: 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/bin_test>
    [javac] Compiling 10 source files to 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/bin_test>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/LogDescriptorTest.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/LogEventTest.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/listener/LogTest.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/listener/MockLog.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/server/servlet/LogServletTest.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/server/store/impl/LogStoreImplConcurrencyTest.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/server/store/impl/ServerLogStoreTester.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/server/task/LogTaskTest.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/target/store/impl/GatewayLogStoreTest.java>
    [javac] 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/target/task/LogSyncTaskTest.java>
    [javac] Note: 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/test/org/apache/ace/log/target/store/impl/GatewayLogStoreTest.java>
 uses unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.

testng:
    [mkdir] Created dir: 
<https://builds.apache.org/job/ACE-trunk/ws/org.apache.ace.log/generated/testng>
   [testng] [TestNG] Running:
   [testng]   Ant suite
   [testng] 
   [testng] Reader (Reader-0) starting to read 10000 records...
   [testng] Writer (Writer-0) starts writing 10000 records...
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] I/O exception (IOException) caught: Could not obtain a lock for the 
store 12345 of target targetId in 
org.apache.ace.log.server.store.impl.LogStoreImpl.get(84) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptorInternal(163) -> 
org.apache.ace.log.server.store.impl.LogStoreImpl.getDescriptor(149).
   [testng] Writer (Writer-0) finished with 9781 records written...
   [testng] Ending writer (Writer-0)
   [testng] Writing 10000 records took 476.488 ms.
   [testng] 
   [testng] ===============================================
   [testng] Ant suite
   [testng] Total tests run: 34, Failures: 1, Skips: 0
   [testng] ===============================================
   [testng] 

BUILD FAILED
<https://builds.apache.org/job/ACE-trunk/ws/cnf/build.xml>:39: The following 
error occurred while executing this line:
<https://builds.apache.org/job/ACE-trunk/ws/cnf/build.xml>:47: The tests failed.

Total time: 4 minutes 6 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results
TestNG Reports Processing: START
Looking for TestNG results report in workspace using pattern: 
**/testng/testng-results.xml
Saving reports...
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-1.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-10.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-11.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-12.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-2.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-3.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-4.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-5.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-6.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-7.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-8.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results-9.xml'
Processing 
'/x1/jenkins/jenkins-home/jobs/ACE-trunk/builds/2014-11-12_19-32-10/testng/testng-results.xml'
Failed Tests/Configs found. Marking build as UNSTABLE.
TestNG Reports Processing: FINISH

Reply via email to