From 6aa8b4d21f0e19866db5c3ffb2e081a1157e3d41 Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Wed, 8 Jan 2025 15:04:32 +0530 Subject: [PATCH 1/2] Log test results --- compiler-plugin-tests/build.gradle | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/compiler-plugin-tests/build.gradle b/compiler-plugin-tests/build.gradle index e5ae999e5..5bba8f80b 100644 --- a/compiler-plugin-tests/build.gradle +++ b/compiler-plugin-tests/build.gradle @@ -94,6 +94,17 @@ test { useTestNG() finalizedBy jacocoTestReport testLogging.showStandardStreams = true + testLogging { + events "PASSED", "FAILED", "SKIPPED" + afterSuite { desc, result -> + if (!desc.parent) { // will match the outermost suite + def output = "Results: ${result.resultType} (${result.testCount} tests, ${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped)" + def startItem = '| ', endItem = ' |' + def repeatLength = startItem.length() + output.length() + endItem.length() + println('\n' + ('-' * repeatLength) + '\n' + startItem + output + endItem + '\n' + ('-' * repeatLength)) + } + } + } } jacocoTestReport { From 19da0923a4cbbd2b5e1c9da1da5238faa292bf4b Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Wed, 8 Jan 2025 15:04:45 +0530 Subject: [PATCH 2/2] [Automated] Update the native jar versions --- ballerina/Ballerina.toml | 4 ++-- ballerina/Dependencies.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ballerina/Ballerina.toml b/ballerina/Ballerina.toml index e41919c2c..849bf3658 100644 --- a/ballerina/Ballerina.toml +++ b/ballerina/Ballerina.toml @@ -23,13 +23,13 @@ path = "../native/build/libs/http-native-2.13.0-SNAPSHOT.jar" groupId = "io.ballerina.stdlib" artifactId = "mime-native" version = "2.11.0" -path = "./lib/mime-native-2.11.0-20241209-180600-aa73132.jar" +path = "./lib/mime-native-2.11.0-20241218-125100-e28a03b.jar" [[platform.java21.dependency]] groupId = "io.ballerina.stdlib" artifactId = "constraint-native" version = "1.6.0" -path = "./lib/constraint-native-1.6.0-20241209-172100-2facdca.jar" +path = "./lib/constraint-native-1.6.0-20241218-112400-cd313f2.jar" [[platform.java21.dependency]] groupId = "io.netty" diff --git a/ballerina/Dependencies.toml b/ballerina/Dependencies.toml index b9a0c88ee..4ffdf4673 100644 --- a/ballerina/Dependencies.toml +++ b/ballerina/Dependencies.toml @@ -5,7 +5,7 @@ [ballerina] dependencies-toml-version = "2" -distribution-version = "2201.11.0-20241209-162400-0c015833" +distribution-version = "2201.11.0-20241218-101200-109f6cc7" [[package]] org = "ballerina"