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>
This commit is contained in:
Ahmet Alp Balkan 2015-02-24 21:03:50 -08:00
parent 309eec2378
commit 26444e5e9a

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")