NO-JIRA Using less resources from public clouds on tests

LibaioTest was failing because of a test that was allocating
500 positions on libaio.
Which may not be available on Travis every time.
diff --git a/src/test/java/org/apache/activemq/artemis/jlibaio/test/LibaioTest.java b/src/test/java/org/apache/activemq/artemis/jlibaio/test/LibaioTest.java
index 922df37..e663e19 100644
--- a/src/test/java/org/apache/activemq/artemis/jlibaio/test/LibaioTest.java
+++ b/src/test/java/org/apache/activemq/artemis/jlibaio/test/LibaioTest.java
@@ -630,7 +630,7 @@
 
    @Test
    public void testBlockedCallback() throws Exception {
-      final LibaioContext blockedContext = new LibaioContext(500, true, true);
+      final LibaioContext blockedContext = new LibaioContext(LIBAIO_QUEUE_SIZE, true, true);
       Thread t = new Thread() {
          @Override
          public void run() {
@@ -640,7 +640,7 @@
 
       t.start();
 
-      int NUMBER_OF_BLOCKS = 5000;
+      int NUMBER_OF_BLOCKS = LIBAIO_QUEUE_SIZE * 10;
 
       final CountDownLatch latch = new CountDownLatch(NUMBER_OF_BLOCKS);