Skip to content

Commit

Permalink
Make CRT signer tests JVM-only
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Oct 16, 2023
1 parent 760fdae commit 19b6be7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
8 changes: 6 additions & 2 deletions runtime/auth/http-auth-aws/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ kotlin {
implementation(project(":runtime:protocol:http-client"))
implementation(project(":runtime:protocol:http-test"))
implementation(project(":runtime:auth:aws-signing-default"))
// FIXME - re-enable
// implementation(project(":runtime:auth:aws-signing-crt"))
implementation(libs.kotlinx.coroutines.test)
}
}

jvmTest {
dependencies {
implementation(project(":runtime:auth:aws-signing-crt"))
}
}

all {
languageSettings.optIn("aws.smithy.kotlin.runtime.InternalApi")
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package aws.smithy.kotlin.runtime.http.auth

import aws.smithy.kotlin.runtime.auth.awssigning.crt.CrtAwsSigner

class CrtAwsHttpSignerTest : AwsHttpSignerTestBase(CrtAwsSigner)

0 comments on commit 19b6be7

Please sign in to comment.