]> git.ipfire.org Git - thirdparty/git.git/commit
t1400: set core.logAllRefUpdates in "logged by touch" tests
authorKyle Meyer <kyle@kyleam.com>
Tue, 21 Mar 2017 00:56:13 +0000 (20:56 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 21 Mar 2017 17:50:16 +0000 (10:50 -0700)
commit3e5584ca61efbcc99f2c043cfd0b3cff76ca786d
tree2104d56a05118434f275e705de6e17558b089831
parentf950e89fc4f8e535aa1b8d71eb7b3b80924a5290
t1400: set core.logAllRefUpdates in "logged by touch" tests

A group of update-ref tests verifies that logs are created when either
the log file for the ref already exists or core.logAllRefUpdates is
"true".  However, when the default for core.logAllRefUpdates was
changed in 0bee59186 (Enable reflogs by default in any repository with
a working directory., 2006-12-14), the setup for the tests was not
updated.  As a result, the "logged by touch" tests would pass even if
the log file did not exist (i.e., if "--create-reflog" was removed
from the first "git update-ref" call).

Update the "logged by touch" tests to disable core.logAllRefUpdates
explicitly so that the behavior does not depend on the default value.
While we're here, update the "logged by config" tests to use
test_config() rather than setting core.logAllRefUpdates to "true"
outside of the tests.

Signed-off-by: Kyle Meyer <kyle@kyleam.com>
Reviewed-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1400-update-ref.sh