mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fatal info not identical with actual chmod intent
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
This commit is contained in:
parent
402cf238bf
commit
bd0ec7ed55
1 changed files with 2 additions and 2 deletions
|
@ -1614,10 +1614,10 @@ func (s *DockerSuite) TestBuildWithInaccessibleFilesInContext(c *check.C) {
|
|||
c.Fatalf("failed to chown directory to root: %s", err)
|
||||
}
|
||||
if err = os.Chmod(pathToDirectoryWithoutReadAccess, 0444); err != nil {
|
||||
c.Fatalf("failed to chmod directory to 755: %s", err)
|
||||
c.Fatalf("failed to chmod directory to 444: %s", err)
|
||||
}
|
||||
if err = os.Chmod(pathToFileInDirectoryWithoutReadAccess, 0700); err != nil {
|
||||
c.Fatalf("failed to chmod file to 444: %s", err)
|
||||
c.Fatalf("failed to chmod file to 700: %s", err)
|
||||
}
|
||||
|
||||
buildCmd := exec.Command("su", "unprivilegeduser", "-c", fmt.Sprintf("%s build -t %s .", dockerBinary, name))
|
||||
|
|
Loading…
Reference in a new issue