Skip to content

Commit 4122443

Browse files
justincormackthaJeztah
authored andcommitted
Merge pull request moby#30893 from Microsoft/jjh/disabletesttemporarily
Windows: Temporarily disable TestBuildLastModified (cherry picked from commit eaffb30) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent e301d95 commit 4122443

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

integration-cli/docker_cli_build_test.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,10 @@ func (s *DockerSuite) TestBuildCacheAdd(c *check.C) {
531531
}
532532

533533
func (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)
36503655
func (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)
36883694
func (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
48144821
func (s *DockerSuite) TestBuildRenamedDockerfile(c *check.C) {
48154822

48164823
ctx, err := fakeContext(`FROM busybox

0 commit comments

Comments
 (0)