Skip to content

Commit

Permalink
Make referencetests build script Windows friendly (hyperledger#5789)
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
  • Loading branch information
fab-10 authored and eum602 committed Nov 3, 2023
1 parent 92a130c commit ac0b00f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethereum/referencetests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def eipBlockchainReferenceTests = tasks.register("eipBlockchainReferenceTests")
generateTestFiles(
fileTree(referenceTestsPath),
file("src/reference-test/templates/BlockchainReferenceTest.java.template"),
"EIPTests/BlockchainTests",
"EIPTests${File.separatorChar}BlockchainTests",
"$generatedTestsPath/org/hyperledger/besu/ethereum/vm/eip",
"EIPBlockchainReferenceTest",
)
Expand All @@ -62,7 +62,7 @@ def eipStateReferenceTests = tasks.register("eipStateReferenceTests") {
generateTestFiles(
fileTree(referenceTestsPath),
file("src/reference-test/templates/GeneralStateReferenceTest.java.template"),
"EIPTests/StateTests",
"EIPTests${File.separatorChar}StateTests",
"$generatedTestsPath/org/hyperledger/besu/ethereum/vm/eip",
"EIPStateReferenceTest",
)
Expand Down

0 comments on commit ac0b00f

Please sign in to comment.