Browse code

Mark archive.TestApplyLayer as skipped

Instead of just returning we call Skip to log that the test
was skipped.

Alexander Larsson authored on 2013/11/18 22:31:34
Showing 1 changed files
... ...
@@ -251,7 +251,8 @@ func TestChangesDirsMutated(t *testing.T) {
251 251
 }
252 252
 
253 253
 func TestApplyLayer(t *testing.T) {
254
-	return // Disable this for now as it is broken
254
+	t.Skip("Skipping TestApplyLayer due to known failures") // Disable this for now as it is broken
255
+	return
255 256
 
256 257
 	src, err := ioutil.TempDir("", "docker-changes-test")
257 258
 	if err != nil {