-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable kafka-snappy tests for versions of GraalVM older than 21.0
Fixes: #16129
- Loading branch information
Showing
3 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
integration-tests/kafka-snappy/src/test/java/io/quarkus/it/kafka/KafkaSnappyCodecITCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
package io.quarkus.it.kafka; | ||
|
||
import static io.quarkus.test.junit.DisableIfBuiltWithGraalVMOlderThan.GraalVMVersion.GRAALVM_21_0; | ||
|
||
import io.quarkus.test.junit.DisableIfBuiltWithGraalVMOlderThan; | ||
import io.quarkus.test.junit.NativeImageTest; | ||
|
||
@NativeImageTest | ||
@DisableIfBuiltWithGraalVMOlderThan(GRAALVM_21_0) | ||
public class KafkaSnappyCodecITCase extends KafkaSnappyCodecTest { | ||
|
||
} |
4 changes: 4 additions & 0 deletions
4
...ation-tests/kafka-snappy/src/test/java/io/quarkus/it/kafka/KafkaSnappyConsumerITCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
package io.quarkus.it.kafka; | ||
|
||
import static io.quarkus.test.junit.DisableIfBuiltWithGraalVMOlderThan.GraalVMVersion.GRAALVM_21_0; | ||
|
||
import io.quarkus.test.junit.DisableIfBuiltWithGraalVMOlderThan; | ||
import io.quarkus.test.junit.NativeImageTest; | ||
|
||
@NativeImageTest | ||
@DisableIfBuiltWithGraalVMOlderThan(GRAALVM_21_0) | ||
public class KafkaSnappyConsumerITCase extends KafkaSnappyConsumerTest { | ||
|
||
} |
4 changes: 4 additions & 0 deletions
4
...ation-tests/kafka-snappy/src/test/java/io/quarkus/it/kafka/KafkaSnappyProducerITCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
package io.quarkus.it.kafka; | ||
|
||
import static io.quarkus.test.junit.DisableIfBuiltWithGraalVMOlderThan.GraalVMVersion.GRAALVM_21_0; | ||
|
||
import io.quarkus.test.junit.DisableIfBuiltWithGraalVMOlderThan; | ||
import io.quarkus.test.junit.NativeImageTest; | ||
|
||
@NativeImageTest | ||
@DisableIfBuiltWithGraalVMOlderThan(GRAALVM_21_0) | ||
public class KafkaSnappyProducerITCase extends KafkaSnappyProducerTest { | ||
|
||
} |