mirror of https://github.com/docker/cli.git
command/container: skip some tests on macOS
These tests failed when running natively on macOS; unknown server OS: darwin Skipping them, like we do on Windows Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
ba2a712ff0
commit
1c31e193c0
|
@ -352,7 +352,7 @@ func TestParseWithExpose(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestParseDevice(t *testing.T) {
|
||||
skip.If(t, runtime.GOOS == "windows") // Windows validates server-side
|
||||
skip.If(t, runtime.GOOS != "linux") // Windows and macOS validate server-side
|
||||
valids := map[string]container.DeviceMapping{
|
||||
"/dev/snd": {
|
||||
PathOnHost: "/dev/snd",
|
||||
|
@ -768,7 +768,7 @@ func TestParseEntryPoint(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestValidateDevice(t *testing.T) {
|
||||
skip.If(t, runtime.GOOS == "windows") // Windows validates server-side
|
||||
skip.If(t, runtime.GOOS != "linux") // Windows and macOS validate server-side
|
||||
valid := []string{
|
||||
"/home",
|
||||
"/home:/home",
|
||||
|
|
Loading…
Reference in New Issue