integ-cli: skip TestRunBindMounts (same-host daemon requirement)

`TestRunBindMounts` requires daemon to be on the same host.
Running this cli test on Linux is fair enough coverage for
this functionality and we can skip this for platforms where
daemon cannot run side-by-side with the cli for now.

Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
Upstream-commit: 26444e5e9ad3bc2babd62b76a9a4b46d82414738
Component: engine
This commit is contained in:
Ahmet Alp Balkan
2015-02-24 21:03:50 -08:00
parent 8589971917
commit 8535caec3a

View File

@ -2190,6 +2190,7 @@ func TestRunEntrypoint(t *testing.T) {
}
func TestRunBindMounts(t *testing.T) {
testRequires(t, SameHostDaemon)
defer deleteAllContainers()
tmpDir, err := ioutil.TempDir("", "docker-test-container")