浏览代码

Mark archive.TestApplyLayer as skipped

Instead of just returning we call Skip to log that the test
was skipped.
Alexander Larsson 11 年之前
父节点
当前提交
8ed4307f50
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      archive/changes_test.go

+ 2 - 1
archive/changes_test.go

@@ -251,7 +251,8 @@ func TestChangesDirsMutated(t *testing.T) {
 }
 
 func TestApplyLayer(t *testing.T) {
-	return // Disable this for now as it is broken
+	t.Skip("Skipping TestApplyLayer due to known failures") // Disable this for now as it is broken
+	return
 
 	src, err := ioutil.TempDir("", "docker-changes-test")
 	if err != nil {