We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa44461 commit 6bc63cfCopy full SHA for 6bc63cf
runtime/runtime-core/linux/test/aws/smithy/kotlin/runtime/util/SystemPlatformProviderTestLinux.kt renamed to runtime/runtime-core/linuxX64/test/aws/smithy/kotlin/runtime/util/SystemPlatformProviderLinuxX64Test.kt
@@ -8,10 +8,15 @@ import kotlinx.coroutines.test.runTest
8
import kotlin.test.Test
9
import kotlin.test.assertEquals
10
11
-class SystemPlatformProviderTestLinux {
+class SystemPlatformProviderLinuxX64Test {
12
@Test
13
fun testOsInfo() = runTest {
14
val osInfo = PlatformProvider.System.osInfo()
15
assertEquals(OsFamily.Linux, osInfo.family)
16
}
17
+
18
+ @Test
19
+ fun definitelyShouldFail() = runTest {
20
+ assertEquals(1, 2)
21
+ }
22
0 commit comments