Skip to content

Commit

Permalink
More fixes to allow project to build on Windows 10
Browse files Browse the repository at this point in the history
  • Loading branch information
joakime committed Oct 16, 2020
1 parent 07d35d3 commit e6fb4c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jetty-http2/http2-server/pom.xml
Expand Up @@ -87,9 +87,11 @@
</build>
</profile>
<profile>
<id>run-docker-http2spec</id>
<id>run-h2spec-in-docker</id>
<activation>
<file>/var/run/docker.sock</file>
<file>
<exists>/var/run/docker.sock</exists>
</file>
</activation>
<build>
<plugins>
Expand Down
Expand Up @@ -36,7 +36,9 @@
import org.eclipse.jetty.util.ssl.SslContextFactory;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnJre;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.JRE;
import org.junit.jupiter.api.condition.OS;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
Expand Down Expand Up @@ -204,6 +206,7 @@ private void testSimpleWebAppWithJSPOverHTTP2(boolean ssl) throws Exception
}

@Test
@DisabledOnOs(OS.WINDOWS) // jnr not supported on windows
public void testUnixSocket() throws Exception
{
Path tmpSockFile;
Expand Down

0 comments on commit e6fb4c3

Please sign in to comment.