Browse code

Merge pull request #30893 from Microsoft/jjh/disabletesttemporarily

Windows: Temporarily disable TestBuildLastModified
(cherry picked from commit eaffb3099a4ed2701fc0934b39b7dcdd1ca62219)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Justin Cormack authored on 2017/02/10 20:38:56
Showing 1 changed files
... ...
@@ -531,6 +531,10 @@ func (s *DockerSuite) TestBuildCacheAdd(c *check.C) {
531 531
 }
532 532
 
533 533
 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
+
534 538
 	name := "testbuildlastmodified"
535 539
 
536 540
 	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
3647 3647
 	}
3648 3648
 }
3649 3649
 
3650
+// FIXME(vdemeester) rename this test (and probably "merge" it with the one below TestBuildEnvUsage2)
3650 3651
 func (s *DockerSuite) TestBuildEnvUsage(c *check.C) {
3651 3652
 	// /docker/world/hello is not owned by the correct user
3652 3653
 	testRequires(c, NotUserNamespace)
... ...
@@ -3685,6 +3690,7 @@ RUN    [ "$ghi" = "def" ]
3685 3685
 	}
3686 3686
 }
3687 3687
 
3688
+// FIXME(vdemeester) rename this test (and probably "merge" it with the one above TestBuildEnvUsage)
3688 3689
 func (s *DockerSuite) TestBuildEnvUsage2(c *check.C) {
3689 3690
 	// /docker/world/hello is not owned by the correct user
3690 3691
 	testRequires(c, NotUserNamespace)
... ...
@@ -4811,6 +4817,7 @@ CMD cat /foo/file`,
4811 4811
 
4812 4812
 }
4813 4813
 
4814
+// FIXME(vdemeester) part of this should be unit test, other part should be clearer
4814 4815
 func (s *DockerSuite) TestBuildRenamedDockerfile(c *check.C) {
4815 4816
 
4816 4817
 	ctx, err := fakeContext(`FROM busybox