summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorbrian m. carlson <bk2204@github.com>2023-10-12 18:09:29 +0200
committerJunio C Hamano <gitster@pobox.com>2023-10-13 22:33:35 +0200
commit678eb55f5da174fce21f686f0073d56904c081c9 (patch)
tree6447c30830961b5a512e2e710770c4a609fd8355 /Makefile
parentGit 2.42 (diff)
downloadgit-678eb55f5da174fce21f686f0073d56904c081c9.tar.xz
git-678eb55f5da174fce21f686f0073d56904c081c9.zip
t: add a test helper to truncate files
In a future commit, we're going to work with some large files which will be at least 4 GiB in size. To take advantage of the sparseness functionality on most Unix systems and avoid running the system out of disk, it would be convenient to use truncate(2) to simply create a sparse file of sufficient size. However, the GNU truncate(1) utility isn't portable, so let's write a tiny test helper that does the work for us. Signed-off-by: brian m. carlson <bk2204@github.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5776309365..3a6889d2bc 100644
--- a/Makefile
+++ b/Makefile
@@ -852,6 +852,7 @@ TEST_BUILTINS_OBJS += test-submodule-nested-repo-config.o
TEST_BUILTINS_OBJS += test-submodule.o
TEST_BUILTINS_OBJS += test-subprocess.o
TEST_BUILTINS_OBJS += test-trace2.o
+TEST_BUILTINS_OBJS += test-truncate.o
TEST_BUILTINS_OBJS += test-urlmatch-normalization.o
TEST_BUILTINS_OBJS += test-userdiff.o
TEST_BUILTINS_OBJS += test-wildmatch.o