From c93d8a6839f5c58d90ad170efb7bd7b3fb9bd021 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 24 Sep 2024 10:59:26 -0400 Subject: [PATCH] api dump --- .../rendering/smoketests/SmokeTestsRunnerGeneratorTest.kt | 4 ++-- runtime/runtime-core/api/runtime-core.api | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/rendering/smoketests/SmokeTestsRunnerGeneratorTest.kt b/codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/rendering/smoketests/SmokeTestsRunnerGeneratorTest.kt index 62e1f8b0a..7f9c54a0f 100644 --- a/codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/rendering/smoketests/SmokeTestsRunnerGeneratorTest.kt +++ b/codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/rendering/smoketests/SmokeTestsRunnerGeneratorTest.kt @@ -74,8 +74,8 @@ class SmokeTestsRunnerGeneratorTest { generatedCode.shouldContainOnlyOnceWithDiff( """ private var exitCode = 0 - private val skipTags = System.getenv("AWS_SMOKE_TEST_SKIP_TAGS")?.let { it.split(",").map { it.trim() }.toSet() } ?: emptySet() - private val serviceFilter = System.getenv("AWS_SMOKE_TEST_SERVICE_IDS")?.let { it.split(",").map { it.trim() }.toSet() } + private val skipTags = getEnv("AWS_SMOKE_TEST_SKIP_TAGS")?.let { it.split(",").map { it.trim() }.toSet() } ?: emptySet() + private val serviceFilter = getEnv("AWS_SMOKE_TEST_SERVICE_IDS")?.let { it.split(",").map { it.trim() }.toSet() } """.trimIndent(), ) } diff --git a/runtime/runtime-core/api/runtime-core.api b/runtime/runtime-core/api/runtime-core.api index d1ba553de..ed3c8d6b4 100644 --- a/runtime/runtime-core/api/runtime-core.api +++ b/runtime/runtime-core/api/runtime-core.api @@ -2046,6 +2046,7 @@ public final class aws/smithy/kotlin/runtime/retries/policy/SuccessAcceptor : aw public final class aws/smithy/kotlin/runtime/smoketests/SmokeTestsFunctionsJVMKt { public static final fun exitProcess (I)Ljava/lang/Void; + public static final fun getEnv (Ljava/lang/String;)Ljava/lang/String; } public final class aws/smithy/kotlin/runtime/text/Scanner {