Minor. Add test with boolean parameter

This commit is contained in:
Ilmir Usmanov
2020-08-11 19:54:29 +02:00
parent bcbb050326
commit 31e4ddafd1
7 changed files with 241 additions and 2 deletions
@@ -353,6 +353,11 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeListing/coroutines/spilling"), Pattern.compile("^(.+)\\.kt$"), null, true);
}
@TestMetadata("booleanParameter.kt")
public void testBooleanParameter() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/coroutines/spilling/booleanParameter.kt");
}
@TestMetadata("component1.kt")
public void testComponent1() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/coroutines/spilling/component1.kt");
@@ -323,6 +323,11 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/bytecodeListing/coroutines/spilling"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
}
@TestMetadata("booleanParameter.kt")
public void testBooleanParameter() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/coroutines/spilling/booleanParameter.kt");
}
@TestMetadata("component1.kt")
public void testComponent1() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/coroutines/spilling/component1.kt");