1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #13656 from lizf-os/13641-skip-test-on-lxc

test: Skip TestDevicePermissions on lxc
This commit is contained in:
Jessie Frazelle 2015-06-02 11:05:22 -07:00
commit 7d33bc0bec

View file

@ -3166,6 +3166,7 @@ func (s *DockerSuite) TestRunPublishPort(c *check.C) {
// Issue #10184.
func (s *DockerSuite) TestDevicePermissions(c *check.C) {
testRequires(c, NativeExecDriver)
const permissions = "crw-rw-rw-"
out, status := dockerCmd(c, "run", "--device", "/dev/fuse:/dev/fuse:mrw", "busybox:latest", "ls", "-l", "/dev/fuse")
if status != 0 {