Skip to content

Commit

Permalink
Disable these tests
Browse files Browse the repository at this point in the history
These tests have been failing since they were introduced, so they
will be disabled pending #302.
  • Loading branch information
headius committed Mar 31, 2022
1 parent a2ef71c commit b616411
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/java/jnr/ffi/pointer/PointerNumericTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package jnr.ffi.pointer;

import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.Random;
Expand Down Expand Up @@ -512,6 +513,7 @@ public void testPointerSetDouble() {

// ========================= Boolean ============================

@Disabled("fails on MacOS x86_64, see https://github.com/jnr/jnr-ffi/issues/302")
@Test
public void testPointerGetBoolean() {
final int total = COUNT;
Expand Down Expand Up @@ -545,6 +547,7 @@ public void testPointerGetBoolean() {
"Incorrect booleans returned from bulk get method");
}

@Disabled("fails on MacOS x86_64, see https://github.com/jnr/jnr-ffi/issues/302")
@Test
public void testPointerSetBoolean() {
final int total = COUNT;
Expand Down

0 comments on commit b616411

Please sign in to comment.