Skip to content

Commit

Permalink
Bump tokyocabinet v0.0.16 (which adds support for freebsd and openbsd…
Browse files Browse the repository at this point in the history
…); unit tests for tokyo include those platforms too
  • Loading branch information
jjlauer committed Jan 22, 2025
1 parent 1a6c026 commit 7543b45
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.nio.file.Paths;
import java.util.Map;

@DisabledOnOs({ OS.WINDOWS, OS.FREEBSD, OS.OPENBSD })
@DisabledOnOs({ OS.WINDOWS })
public class TokyoBigLinkedMapTest extends AbstractBigLinkedMapTest {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.nio.file.Paths;
import java.util.Set;

@DisabledOnOs({ OS.WINDOWS, OS.FREEBSD, OS.OPENBSD })
@DisabledOnOs({ OS.WINDOWS })
public class TokyoBigLinkedSetTest extends AbstractBigLinkedSetTest {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.nio.file.Paths;
import java.util.Map;

@DisabledOnOs({ OS.WINDOWS, OS.FREEBSD, OS.OPENBSD })
@DisabledOnOs({ OS.WINDOWS })
public class TokyoBigMapTest extends AbstractBigMapTest {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.nio.file.Paths;
import java.util.Set;

@DisabledOnOs({ OS.WINDOWS, OS.FREEBSD, OS.OPENBSD })
@DisabledOnOs({ OS.WINDOWS })
public class TokyoBigSetTest extends AbstractBigSetTest {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import static org.hamcrest.CoreMatchers.nullValue;
import static org.hamcrest.MatcherAssert.assertThat;

@DisabledOnOs({ OS.WINDOWS, OS.FREEBSD, OS.OPENBSD })
@DisabledOnOs({ OS.WINDOWS })
public class TokyoBigMapTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.nio.file.Paths;
import java.util.Set;

@DisabledOnOs({ OS.WINDOWS, OS.FREEBSD, OS.OPENBSD })
@DisabledOnOs({ OS.WINDOWS })
public class TokyoBigSetTest {

@Test
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<properties>
<java.version>1.8</java.version>
<tokyocabinet.version>0.0.15</tokyocabinet.version>
<tokyocabinet.version>0.0.16</tokyocabinet.version>
<tkrzw.version>0.0.8</tkrzw.version>
</properties>

Expand Down

0 comments on commit 7543b45

Please sign in to comment.