Skip to content

Commit

Permalink
disable async compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
chaokunyang committed May 3, 2024
1 parent 97a318a commit df96fa1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions java/fury-core/src/test/java/org/apache/fury/CyclicTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static Object[][] beans() {
public static Object[][] fury() {
return Sets.cartesianProduct(
ImmutableSet.of(true, false), // enableCodegen
ImmutableSet.of(true, false), // async compilation
ImmutableSet.of(false), // async compilation
ImmutableSet.of(
CompatibleMode.SCHEMA_CONSISTENT, CompatibleMode.COMPATIBLE) // structFieldsRepeat
)
Expand All @@ -65,7 +65,7 @@ public static Object[][] fury() {
.toArray(Object[][]::new);
}

@Test
@Test(dataProvider = "fury")
public void testBean(FuryBuilder builder) {
Fury fury = builder.withMetaContextShare(false).withRefTracking(true).build();
for (Object[] objects : beans()) {
Expand All @@ -87,7 +87,7 @@ public void testBean(FuryBuilder builder) {
}
}

@Test
@Test(dataProvider = "fury")
public void testBeanMetaShared(FuryBuilder builder) {
Fury fury = builder.withMetaContextShare(true).withRefTracking(true).build();
for (Object[] objects : beans()) {
Expand Down

0 comments on commit df96fa1

Please sign in to comment.