Skip to content

Commit

Permalink
Experiment
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Mar 5, 2024
1 parent 854020d commit ab7bcaa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions java/integTest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import java.time.LocalDateTime
import java.time.ZoneOffset

plugins {
id 'java-library'
}
Expand Down Expand Up @@ -130,6 +133,10 @@ tasks.withType(Test) {
exceptionFormat "full"
events "started", "skipped", "passed", "failed"
showStandardStreams true
afterTest { TestDescriptor desc, TestResult res ->
def ts = LocalDateTime.ofEpochSecond(res.endTime / 1000 as long, 0, ZoneOffset.UTC)
println "$ts: $res.resultType $desc.name ($desc.className)"
}
}
jvmArgs "-Djava.library.path=${project.rootDir}/target/release"
afterTest { desc, result ->
Expand Down

0 comments on commit ab7bcaa

Please sign in to comment.