@@ -531,6 +531,10 @@ func (s *DockerSuite) TestBuildCacheAdd(c *check.C) {
531531}
532532
533533func (s * DockerSuite ) TestBuildLastModified (c * check.C ) {
534+ // Temporary fix for #30890. TODO @jhowardmsft figure out what
535+ // has changed in the master busybox image.
536+ testRequires (c , DaemonIsLinux )
537+
534538 name := "testbuildlastmodified"
535539
536540 server , err := fakeStorage (map [string ]string {
@@ -3647,6 +3651,7 @@ RUN [ "$(id -u):$(id -g)/$(id -un):$(id -gn)/$(id -G):$(id -Gn)" = '1042:1043/10
36473651 }
36483652}
36493653
3654+ // FIXME(vdemeester) rename this test (and probably "merge" it with the one below TestBuildEnvUsage2)
36503655func (s * DockerSuite ) TestBuildEnvUsage (c * check.C ) {
36513656 // /docker/world/hello is not owned by the correct user
36523657 testRequires (c , NotUserNamespace )
@@ -3685,6 +3690,7 @@ RUN [ "$ghi" = "def" ]
36853690 }
36863691}
36873692
3693+ // FIXME(vdemeester) rename this test (and probably "merge" it with the one above TestBuildEnvUsage)
36883694func (s * DockerSuite ) TestBuildEnvUsage2 (c * check.C ) {
36893695 // /docker/world/hello is not owned by the correct user
36903696 testRequires (c , NotUserNamespace )
@@ -4811,6 +4817,7 @@ CMD cat /foo/file`,
48114817
48124818}
48134819
4820+ // FIXME(vdemeester) part of this should be unit test, other part should be clearer
48144821func (s * DockerSuite ) TestBuildRenamedDockerfile (c * check.C ) {
48154822
48164823 ctx , err := fakeContext (`FROM busybox
0 commit comments