mirror of
https://github.com/moby/moby.git
synced 2025-07-05 14:41:28 +03:00
Break out non-Windows sys/mount usage into helper
Rather than bifurcate the test completely, this lets us keep the test intact with a small function wrapper to allow the compiler to build the code that'll never be called on Windows, on Windows. Signed-off-by: Paul "TBBle" Hampson <Paul.Hampson@Pobox.com>
This commit is contained in:
9
integration-cli/docker_api_containers_unix_test.go
Normal file
9
integration-cli/docker_api_containers_unix_test.go
Normal file
@ -0,0 +1,9 @@
|
||||
// +build !windows
|
||||
|
||||
package main
|
||||
|
||||
import "github.com/moby/sys/mount"
|
||||
|
||||
func mountWrapper(device, target, mType, options string) error {
|
||||
return mount.Mount(device, target, mType, options)
|
||||
}
|
Reference in New Issue
Block a user