Skip to content

Commit

Permalink
Disable PerformanceTuningTest on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-ponomarev committed Jun 22, 2022
1 parent 7bcd15f commit 7676651
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package net.openhft.chronicle.core;

import net.openhft.chronicle.core.io.IOTools;
import org.junit.Before;
import org.junit.Test;

import java.io.File;
Expand All @@ -15,6 +16,11 @@
import static org.junit.Assume.assumeTrue;

public class PerformanceTuningTest {
@Before
public void setUp() {
assumeTrue(OS.isLinux());
}

public static void main(String[] args) {
assumeTrue(OS.isLinux());

Expand Down

0 comments on commit 7676651

Please sign in to comment.