Karaf 4.0.4. pax-exam 4.8.0. I need to test a Karaf application with a number of different configurations (as specified in cfg files). So, I have about 10 pax exam classes, each with per-class pax exam strategy.
The number recently doubled (it used to be more like 5). Ever since then, we see sporadic failures in which the container never finishes initializing, and then other dumb things go wrong (stack trace of dumb thing below). Does this suggest anything to anyone? I have the failsafe forkCount set to 1, so it can't (or shouldn't) be tests running in parallel. Exception in thread "Thread-22" Exception in thread "Thread-27" Exception in thread "Thread-26" java.lang.NoClassDefFoundError: org/apache/commons/io/IOUtils Exception in thread "Thread-25" at com.basistech.ws.itest.AbstractIT.lambda$doExecute$2(AbstractIT.java:226) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:222) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:164) at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:139) at com.basistech.ws.itest.AbstractIT.doExecute(AbstractIT.java:222) at com.basistech.ws.itest.AbstractIT.doRequestExpectSuccess(AbstractIT.java:190)
