More fixes to allow project to build on Windows 10
This commit is contained in:
parent
07d35d32ae
commit
e6fb4c3ac4
|
@ -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>
|
||||
|
|
|
@ -36,7 +36,9 @@ import org.eclipse.jetty.util.StringUtil;
|
|||
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;
|
||||
|
@ -204,6 +206,7 @@ public class DistributionTests extends AbstractDistributionTest
|
|||
}
|
||||
|
||||
@Test
|
||||
@DisabledOnOs(OS.WINDOWS) // jnr not supported on windows
|
||||
public void testUnixSocket() throws Exception
|
||||
{
|
||||
Path tmpSockFile;
|
||||
|
|
Loading…
Reference in New Issue