From 32c847d1a1142c303a20c7567da2cc4bb1acf5a5 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 15 Jul 2020 11:04:37 -0400 Subject: [PATCH] analysis --- doc/bugs/failing_tests_in_master.mdwn | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/bugs/failing_tests_in_master.mdwn b/doc/bugs/failing_tests_in_master.mdwn index 28a33c6190..914e82fe97 100644 --- a/doc/bugs/failing_tests_in_master.mdwn +++ b/doc/bugs/failing_tests_in_master.mdwn @@ -1,2 +1,14 @@ Recent optimisation work has caused some test suite failures, involving unannex and fsck. --[[Joey]] + +Hmm, the unannex one is because it doesn't check if a file is present +inAnnex anymore, so fails on unannexing a non-present file. + +The check was removed in +[[!commit 75aab72d23ebf8ef0d56d7dd74c121e33d64f1f6]], but that did have +withFilesInGitAnnex doing an inAnnex check and not running the command if +it failed. But later that got changed to only happen when +checkContentPresent is set. + +Everything in that and related commits +needs to be re-examined to make sure no other inAnnex checks were lost.