summaryrefslogtreecommitdiff
path: root/t/helper
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-03-24 14:36:27 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-03-24 14:36:27 -0700
commit858119f6d78d13050d446b5d56445ad1e5432082 (patch)
tree6fa2b179520a0797e0e5099aea28ebeb5d51602c /t/helper
parentMerge branch 'jk/fail-prereq-testfix' (diff)
parentfsmonitor: add perf test for git diff HEAD (diff)
downloadtgif-858119f6d78d13050d446b5d56445ad1e5432082.tar.xz
Merge branch 'nk/diff-index-fsmonitor'
"git diff-index" codepath has been taught to trust fsmonitor status to reduce number of lstat() calls. * nk/diff-index-fsmonitor: fsmonitor: add perf test for git diff HEAD fsmonitor: add assertion that fsmonitor is valid to check_removed fsmonitor: skip lstat deletion check during git diff-index
Diffstat (limited to 't/helper')
-rw-r--r--t/helper/test-chmtime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/helper/test-chmtime.c b/t/helper/test-chmtime.c
index aa22af48c2..524b55ca49 100644
--- a/t/helper/test-chmtime.c
+++ b/t/helper/test-chmtime.c
@@ -109,9 +109,9 @@ int cmd__chmtime(int argc, const char **argv)
uintmax_t mtime;
if (stat(argv[i], &sb) < 0) {
- fprintf(stderr, "Failed to stat %s: %s\n",
+ fprintf(stderr, "Failed to stat %s: %s. Skipping\n",
argv[i], strerror(errno));
- return 1;
+ continue;
}
#ifdef GIT_WINDOWS_NATIVE