Skip to content

Commit 28e9e9a

Browse files
committed
increased budget to unstable E2E tests
1 parent 5c36fcc commit 28e9e9a

5 files changed

Lines changed: 11 additions & 10 deletions

File tree

core-tests/e2e-tests/spring/emb-json/src/test/java/org/evomaster/e2etests/emb/json/genome/GenomeNexusExampleEMTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public void runEMTest() throws Throwable {
2424
runTestHandlingFlakyAndCompilation(
2525
"GenomeNexusExampleGeneratedEMTest",
2626
"org.bar.GenomeNexusExampleGeneratedEMTest",
27-
500,
27+
2000,
2828
true,
2929
(args) -> {
3030
Solution<RestIndividual> solution = initAndRun(args);

core-tests/e2e-tests/spring/emb-json/src/test/java/org/evomaster/e2etests/emb/json/proxyprint/ProxyPrintExampleEMTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public void runEMTest() throws Throwable {
2424
runTestHandlingFlakyAndCompilation(
2525
"ProxyPrintExampleGeneratedEMTest",
2626
"org.foo.ProxyPrintExampleGeneratedEMTest",
27-
5_000,
27+
7_000,
2828
true,
2929
(args) -> {
3030
setOption(args, "taintForceSelectionOfGenesWithSpecialization", "true");
@@ -34,7 +34,7 @@ public void runEMTest() throws Throwable {
3434

3535
assertHasAtLeastOne(solution, HttpVerb.POST, 200, "/api/json", "Printing");
3636
},
37-
3
37+
6
3838
);
3939
}
4040
}

core-tests/e2e-tests/spring/spring-rest-mongo/src/test/java/org/evomaster/e2etests/spring/rest/mongo/findoneby/MongoFindOneByEMTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void testFindOneOnGivenEndpoint(String endpoint) throws Throwable {
3434
runTestHandlingFlaky(
3535
"MongoFindOneByEM_" + id,
3636
"org.foo.spring.rest.mongo.MongoFindOneByEM"+id,
37-
1000,
37+
1500,
3838
true,
3939
(args) -> {
4040
setOption(args, "taintForceSelectionOfGenesWithSpecialization", "true");
@@ -54,6 +54,7 @@ public void testFindOneOnGivenEndpoint(String endpoint) throws Throwable {
5454
assertFalse(solution.getIndividuals().isEmpty());
5555
assertHasAtLeastOne(solution, HttpVerb.GET, 400, endpoint, null);
5656
assertHasAtLeastOne(solution, HttpVerb.GET, 200, endpoint, null);
57-
});
57+
},
58+
6);
5859
}
5960
}

core-tests/e2e-tests/spring/spring-rest-postgres/src/test/kotlin/org/evomaster/e2etests/spring/rest/postgres/json/JsonColumnEMTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class JsonColumnEMTest : SpringRestPostgresTestBase(){
2828
runTestHandlingFlakyAndCompilation(
2929
"JsonColumnEM",
3030
"org.bar.JsonColumnEM",
31-
10
31+
100
3232
) { args ->
3333
val solution = initAndRun(args)
3434

@@ -47,4 +47,4 @@ class JsonColumnEMTest : SpringRestPostgresTestBase(){
4747
})
4848
}
4949
}
50-
}
50+
}

core-tests/jdk-8/spring-rest-openapi-v2-tests/src/test/java/org/evomaster/e2etests/spring/examples/json/JsonEMTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ public static void initClass() throws Exception {
1919
}
2020

2121
@Test
22-
public void testRunEM() throws Throwable {
22+
public void JsonEMTest_testRunEM() throws Throwable {
2323

2424
runTestHandlingFlakyAndCompilation(
2525
"JsonEMTest",
26-
5_000,
27-
5,
26+
10_000,
27+
6,
2828
(args) -> {
2929

3030
setOption(args, "taintForceSelectionOfGenesWithSpecialization", "true");

0 commit comments

Comments
 (0)