Skip to content

Commit

Permalink
[Java] set timeout to JITContextTest (#1040)
Browse files Browse the repository at this point in the history
set timeout to JITContextTest
  • Loading branch information
chaokunyang committed Oct 30, 2023
1 parent 355aaf8 commit f36fb4e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static Object[][] config1() {
.toArray(Object[][]::new);
}

@Test(dataProvider = "config1")
@Test(dataProvider = "config1", timeOut = 60_000)
public void testAsyncCompilation(boolean referenceTracking, CompatibleMode compatibleMode)
throws InterruptedException {
Fury fury =
Expand Down Expand Up @@ -88,7 +88,7 @@ private Serializer getSerializer(Fury fury, Class<?> cls) {
}
}

@Test(dataProvider = "config1")
@Test(dataProvider = "config1", timeOut = 60_000)
public void testAsyncCompilationMetaShared(
boolean referenceTracking, CompatibleMode compatibleMode) throws InterruptedException {
Fury fury =
Expand Down

0 comments on commit f36fb4e

Please sign in to comment.