t/perf: avoid copying builtin fsmonitor files into test repo
commit08894d334969011394dee7ab1dde63176fc51830
authorJeff Hostetler <jeffhost@microsoft.com>
Fri, 25 Mar 2022 18:03:05 +0000 (25 18:03 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 25 Mar 2022 23:04:17 +0000 (25 16:04 -0700)
tree78c98ae97083ebb9f5bd6108ed9f068a4f11c063
parenta00cdff81a2d578405cf0f68072da07eee462b93
t/perf: avoid copying builtin fsmonitor files into test repo

Do not copy any of the various fsmonitor--daemon files from the .git
directory of the (GIT_PREF_REPO or GIT_PERF_LARGE_REPO) source repo
into the test's trash directory.

When perf tests start, they copy the contents of the source repo into
the test's trash directory.  If fsmonitor is running in the source repo,
there may be control files, such as the IPC socket and/or fsmonitor
cookie files.  These should not be copied into the test repo.

Unix domain sockets cannot be copied in the manner used by the test
setup, so if present, the test setup fails.

Cookie files are harmless, but we should avoid them.

The builtin fsmonitor keeps all such control files/sockets in
.git/fsmonitor--daemon*, so it is simple to exclude them.

Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/perf/perf-lib.sh