@AfterClass
  public static void tearDown() throws Exception {
    AsterixHyracksIntegrationUtil.deinit();
    File outdir = new File(PATH_ACTUAL);
    File[] files = outdir.listFiles();
    if (files == null || files.length == 0) {
      outdir.delete();
    }

    // clean up the files written by the ASTERIX storage manager
    for (String d : AsterixHyracksIntegrationUtil.getDataDirs()) {
      TestsUtils.deleteRec(new File(d));
    }
  }
 @Test
 public void test() throws Exception {
   TestsUtils.executeTest(PATH_ACTUAL, tcCtx, null, false);
 }
 @Test
 @Repeat(times = 10000)
 public void test() throws Exception {
   System.err.println("***** Test Count: " + (++count) + " ******");
   TestsUtils.executeTest(PATH_ACTUAL, tcCtx, null, false);
 }