Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d196ec9

Browse files
committedJun 25, 2025·
print fork name to check
1 parent 3215ff6 commit d196ec9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎gradle/tests.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,8 @@ tasks.test.configure {
155155
systemProperty("junit.jupiter.execution.parallel.config.fixed.parallelism",
156156
System.getenv().getOrDefault("UNIT_TESTS_PARALLELISM", "4").toInteger())
157157
//
158+
159+
print("Executing generatinng...\n" + System.getenv("ZKEVM_FORK").toString())
158160
useJUnitPlatform {
159161
excludeTags("nightly")
160162
excludeTags("replay")
@@ -320,6 +322,7 @@ tasks.register("weeklyTests", Test) {
320322
systemProperty("junit.jupiter.execution.parallel.config.fixed.parallelism",
321323
System.getenv().getOrDefault("WEEKLY_TESTS_PARALLELISM", "8").toInteger())
322324

325+
print("Executing generatinng...\n" + System.getenv("ZKEVM_FORK").toString())
323326
useJUnitPlatform {
324327
includeTags("weekly")
325328
}

‎reference-tests/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,12 @@ tasks.register("generateBlockchainReferenceTests", RefTestGenerationTask) {
4242
failedTestsFilePath = System.getenv('FAILED_TEST_JSON_DIRECTORY') ?: "../tmp/local/"
4343
failedModule = System.getenv('FAILED_MODULE') ?: ""
4444
failedConstraint = System.getenv('FAILED_CONSTRAINT') ?: ""
45-
46-
print("Executing generating...\n" + System.getenv("ZKEVM_FORK"))
4745
}
4846

4947
tasks.register('referenceBlockchainTests', Test) {
5048
finalizedBy(jacocoReferenceBlockchainTestsReport)
5149
description = 'Runs ETH reference blockchain tests.'
50+
print("Executing generatinng...\n" + System.getenv("ZKEVM_FORK").toString())
5251
dependsOn generateBlockchainReferenceTests
5352
environment.put("REFERENCE_TEST_OUTCOME_OUTPUT_FILE", "BlockchainReferenceTestOutcome.json")
5453

0 commit comments

Comments
 (0)
Please sign in to comment.