git-commit-vandalism/t/helper/test-genzeros.c
Carlo Marcelo Arenas Belón cbc985a1f4 test-genzeros: allow more than 2G zeros in Windows
d5cfd142ec (tests: teach the test-tool to generate NUL bytes and
use it, 2019-02-14), add a way to generate zeroes in a portable
way without using /dev/zero (needed by HP NonStop), but uses a
long variable that is limited to 2^31 in Windows.

Use instead a (POSIX/C99) intmax_t that is at least 64bit wide
in 64-bit Windows to use in a future test.

Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2021-11-03 11:22:26 -07:00

22 lines
349 B
C

#include "test-tool.h"
#include "git-compat-util.h"
int cmd__genzeros(int argc, const char **argv)
{
intmax_t count;
if (argc > 2) {
fprintf(stderr, "usage: %s [<count>]\n", argv[0]);
return 1;
}
count = argc > 1 ? strtoimax(argv[1], NULL, 0) : -1;
while (count < 0 || count--) {
if (putchar(0) == EOF)
return -1;
}
return 0;
}