mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-29 04:57:48 +01:00
enable ref verification in integration tests
This commit is contained in:
@@ -42,7 +42,9 @@ public class DhfsFuseIT {
|
|||||||
.copy("/app", "/app")
|
.copy("/app", "/app")
|
||||||
.cmd("java", "-Xmx128M", "--add-exports", "java.base/sun.nio.ch=ALL-UNNAMED",
|
.cmd("java", "-Xmx128M", "--add-exports", "java.base/sun.nio.ch=ALL-UNNAMED",
|
||||||
"-Ddhfs.objects.distributed.peerdiscovery.interval=100",
|
"-Ddhfs.objects.distributed.peerdiscovery.interval=100",
|
||||||
"-Ddhfs.objects.distributed.invalidation.delay=100", "-jar", "/app/quarkus-run.jar")
|
"-Ddhfs.objects.distributed.invalidation.delay=100",
|
||||||
|
"-Ddhfs.objects.ref_verification=true",
|
||||||
|
"-jar", "/app/quarkus-run.jar")
|
||||||
.build())
|
.build())
|
||||||
.withFileFromPath("/app", Paths.get(buildPath, "quarkus-app"));
|
.withFileFromPath("/app", Paths.get(buildPath, "quarkus-app"));
|
||||||
container1 = new GenericContainer<>(image)
|
container1 = new GenericContainer<>(image)
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ public class DhfsFusex3IT {
|
|||||||
"-Ddhfs.objects.distributed.peerdiscovery.interval=100",
|
"-Ddhfs.objects.distributed.peerdiscovery.interval=100",
|
||||||
"-Ddhfs.objects.distributed.invalidation.delay=100",
|
"-Ddhfs.objects.distributed.invalidation.delay=100",
|
||||||
"-Djava.util.concurrent.ForkJoinPool.common.parallelism=4",
|
"-Djava.util.concurrent.ForkJoinPool.common.parallelism=4",
|
||||||
|
"-Ddhfs.objects.ref_verification=true",
|
||||||
"-jar", "/app/quarkus-run.jar")
|
"-jar", "/app/quarkus-run.jar")
|
||||||
.build())
|
.build())
|
||||||
.withFileFromPath("/app", Paths.get(buildPath, "quarkus-app"));
|
.withFileFromPath("/app", Paths.get(buildPath, "quarkus-app"));
|
||||||
|
|||||||
Reference in New Issue
Block a user