Le 22/12/14 21:49, John Shaver a écrit : > Hello all, > > Does anyone here have any experience running apacheds on ARM? Nope... > > We are working on a project that will require us to compile apachds > for an arm processer. We've attempted to compile it in raspbian and > pidora but it fails the unit tests. I'm not sure if we should just > skip the test and use it anyway, or if there is some option we can > enable to allow it to pass.
The failing test is very time dependent. The ARM processor is most certainly really slow, so the test that takes around 128ms on my computer seems to take more than 10 seconds on your device, which is damn slow... You can increase the allocated time to run the test in the MultiThreadedMultiInvokerNotThreadsafeTest.checkRuntime() method, but I can assure you that even if you have this test passing, you'll face issues later on. Typically, server-integ tests are taking 3 minutes on my computer, and likely more than 30 minutes on ARM, which will lead Maven to stop (there is somehow a hard coded limit in Maven that ma ke it 'thinks' that some tests lasting more than 30 minutes are a failure)...
