Integration: remove unneeded platform check for IPVLAN tests
These tests require a local daemon, and are not built on Windows
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit 1e4bd2623a
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
dda2b4454f
commit
c95330420c
1 changed files with 0 additions and 2 deletions
|
@ -22,7 +22,6 @@ import (
|
||||||
|
|
||||||
func TestDockerNetworkIpvlanPersistance(t *testing.T) {
|
func TestDockerNetworkIpvlanPersistance(t *testing.T) {
|
||||||
// verify the driver automatically provisions the 802.1q link (di-dummy0.70)
|
// verify the driver automatically provisions the 802.1q link (di-dummy0.70)
|
||||||
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
|
||||||
skip.If(t, testEnv.IsRemoteDaemon)
|
skip.If(t, testEnv.IsRemoteDaemon)
|
||||||
skip.If(t, !ipvlanKernelSupport(t), "Kernel doesn't support ipvlan")
|
skip.If(t, !ipvlanKernelSupport(t), "Kernel doesn't support ipvlan")
|
||||||
|
|
||||||
|
@ -50,7 +49,6 @@ func TestDockerNetworkIpvlanPersistance(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDockerNetworkIpvlan(t *testing.T) {
|
func TestDockerNetworkIpvlan(t *testing.T) {
|
||||||
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
|
||||||
skip.If(t, testEnv.IsRemoteDaemon)
|
skip.If(t, testEnv.IsRemoteDaemon)
|
||||||
skip.If(t, !ipvlanKernelSupport(t), "Kernel doesn't support ipvlan")
|
skip.If(t, !ipvlanKernelSupport(t), "Kernel doesn't support ipvlan")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue