From 9a316a5bcc47da7f69e76e0c25ed257adc4298ce Mon Sep 17 00:00:00 2001 From: Matthias Pohl Date: Mon, 12 Feb 2024 13:49:47 +0100 Subject: [PATCH] [FLINK-34403][ci] Transforms VeryBigPbProtoToRowTest into an integration test The integration test configuration enables a bigger for test execution. --- ...gPbProtoToRowTest.java => VeryBigPbProtoToRowITCase.java} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) rename flink-formats/flink-protobuf/src/test/java/org/apache/flink/formats/protobuf/{VeryBigPbProtoToRowTest.java => VeryBigPbProtoToRowITCase.java} (86%) diff --git a/flink-formats/flink-protobuf/src/test/java/org/apache/flink/formats/protobuf/VeryBigPbProtoToRowTest.java b/flink-formats/flink-protobuf/src/test/java/org/apache/flink/formats/protobuf/VeryBigPbProtoToRowITCase.java similarity index 86% rename from flink-formats/flink-protobuf/src/test/java/org/apache/flink/formats/protobuf/VeryBigPbProtoToRowTest.java rename to flink-formats/flink-protobuf/src/test/java/org/apache/flink/formats/protobuf/VeryBigPbProtoToRowITCase.java index a3e09ff34c8c2..ca729995a900b 100644 --- a/flink-formats/flink-protobuf/src/test/java/org/apache/flink/formats/protobuf/VeryBigPbProtoToRowTest.java +++ b/flink-formats/flink-protobuf/src/test/java/org/apache/flink/formats/protobuf/VeryBigPbProtoToRowITCase.java @@ -25,8 +25,11 @@ /** * Test for very huge proto definition, which may trigger some special optimizations such as code * splitting and java constant pool size optimization. + * + *

Implementing this test as an {@code ITCase} enables larger heap size for the test execution. + * The current unit test execution configuration would cause {@code OutOfMemoryErrors}. */ -public class VeryBigPbProtoToRowTest { +public class VeryBigPbProtoToRowITCase { @Test public void testSimple() throws Exception {