Skip to content

Commit

Permalink
Merge pull request brianfrankcooper#627 from brianfrankcooper/revert-…
Browse files Browse the repository at this point in the history
…626-accumulo-windows

Revert "[accumulo] don't run Accumulo tests on windows build."
  • Loading branch information
risdenk committed Feb 22, 2016
2 parents 71dfb5d + 6784860 commit c4d0074
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeTrue;

import java.util.Map.Entry;
import java.util.Properties;
Expand Down Expand Up @@ -71,16 +70,8 @@ public class AccumuloTest {
private DB client;
private Properties workloadProps;

private static boolean isWindows() {
final String os = System.getProperty("os.name");
return os.startsWith("Windows");
}

@BeforeClass
public static void setup() throws Exception {
// Minicluster setup fails on Windows with an UnsatisfiedLinkError.
// Skip if windows.
assumeTrue(!isWindows());
cluster = new MiniAccumuloCluster(workingDir.newFolder("accumulo").getAbsoluteFile(), "protectyaneck");
LOG.debug("starting minicluster");
cluster.start();
Expand Down

0 comments on commit c4d0074

Please sign in to comment.