Skip to content

Commit 8688b5b

Browse files
committed
tests: disable failing tests on aarch64
1 parent 9cb5d0d commit 8688b5b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

client-legacy/src/test/java/com/influxdb/client/flux/ITFluxClient.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
import org.assertj.core.api.Assertions;
3838
import org.junit.jupiter.api.BeforeEach;
3939
import org.junit.jupiter.api.Test;
40+
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
4041
import org.junit.platform.runner.JUnitPlatform;
4142
import org.junit.runner.RunWith;
4243

@@ -144,6 +145,8 @@ void chunkedCancel() {
144145
}
145146

146147
@Test
148+
//https://github.com/influxdata/flux/issues/2505
149+
@DisabledIfSystemProperty(named = "os.arch", matches = "aarch64")
147150
void query() {
148151

149152
String flux = FROM_FLUX_DATABASE + "\n"
@@ -187,6 +190,8 @@ void error() {
187190
}
188191

189192
@Test
193+
//https://github.com/influxdata/flux/issues/2505
194+
@DisabledIfSystemProperty(named = "os.arch", matches = "aarch64")
190195
void callback() {
191196

192197
countDownLatch = new CountDownLatch(3);

0 commit comments

Comments
 (0)