]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5351: avoid relying on `core.fsyncMethod = batch` to be supported
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Fri, 29 Jul 2022 12:28:43 +0000 (12:28 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 29 Jul 2022 16:08:57 +0000 (09:08 -0700)
On FreeBSD, this mode is not supported. But since 3a251bac0d1a (trace2:
only include "fsync" events if we git_fsync(), 2022-07-18) t5351 will
fail if this mode is unsupported.

Let's address this in the minimal fashion, by detecting that that mode
is unsupported and expecting a different count of hardware flushes in
that case.

This fixes the CI/PR builds on FreeBSD again.

Note: A better way would be to test only what is relevant in t5351.6
"unpack big object in stream (core.fsyncmethod=batch)" again instead of
blindly comparing the output against some exact text. But that would
pretty much revert the idea of above-mentioned commit, and that commit
was _just_ accepted into Git's main branch so one must assume that it
was intentional.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
bulk-checkin.c
t/t5351-unpack-large-objects.sh

index 98ec8938424406ef5973df797b8eca37fda71041..855b68ec23bdb1bdc85c1184a9c144c226f0245c 100644 (file)
@@ -340,6 +340,8 @@ void fsync_loose_object_bulk_checkin(int fd, const char *filename)
         */
        if (!bulk_fsync_objdir ||
            git_fsync(fd, FSYNC_WRITEOUT_ONLY) < 0) {
+               if (errno == ENOSYS)
+                       warning(_("core.fsyncMethod = batch is unsupported on this platform"));
                fsync_or_die(fd, filename);
        }
 }
index f785cb061736170cc57708ef0aacf59f606280ec..dd7ebc4007280d2539bac8e3105042c645d08dbc 100755 (executable)
@@ -70,9 +70,15 @@ test_expect_success 'unpack big object in stream (core.fsyncmethod=batch)' '
        GIT_TRACE2_EVENT="$(pwd)/trace2.txt" \
        GIT_TEST_FSYNC=true \
                git -C dest.git $BATCH_CONFIGURATION unpack-objects <pack-$PACK.pack &&
-       check_fsync_events trace2.txt <<-\EOF &&
+       if grep "core.fsyncMethod = batch is unsupported" trace2.txt
+       then
+               flush_count=7
+       else
+               flush_count=1
+       fi &&
+       check_fsync_events trace2.txt <<-EOF &&
        "key":"fsync/writeout-only","value":"6"
-       "key":"fsync/hardware-flush","value":"1"
+       "key":"fsync/hardware-flush","value":"$flush_count"
        EOF
 
        test_dir_is_empty dest.git/objects/pack &&