2018-03-24 08:44:30 +01:00
|
|
|
#include "git-compat-util.h"
|
|
|
|
#include "test-tool.h"
|
2019-02-22 23:25:01 +01:00
|
|
|
#include "trace2.h"
|
2019-04-18 15:16:49 +02:00
|
|
|
#include "parse-options.h"
|
|
|
|
|
|
|
|
static const char * const test_tool_usage[] = {
|
|
|
|
"test-tool [-C <directory>] <command [<arguments>...]]",
|
|
|
|
NULL
|
|
|
|
};
|
2018-03-24 08:44:30 +01:00
|
|
|
|
|
|
|
struct test_cmd {
|
|
|
|
const char *name;
|
|
|
|
int (*fn)(int argc, const char **argv);
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct test_cmd cmds[] = {
|
2018-03-24 08:44:31 +01:00
|
|
|
{ "chmtime", cmd__chmtime },
|
2018-03-24 08:44:34 +01:00
|
|
|
{ "config", cmd__config },
|
2018-03-24 08:44:35 +01:00
|
|
|
{ "ctype", cmd__ctype },
|
2018-03-24 08:44:36 +01:00
|
|
|
{ "date", cmd__date },
|
2018-03-24 08:44:37 +01:00
|
|
|
{ "delta", cmd__delta },
|
2019-07-11 01:58:57 +02:00
|
|
|
{ "dir-iterator", cmd__dir_iterator },
|
2018-03-24 08:44:38 +01:00
|
|
|
{ "drop-caches", cmd__drop_caches },
|
2018-03-24 08:44:39 +01:00
|
|
|
{ "dump-cache-tree", cmd__dump_cache_tree },
|
2018-09-09 19:36:30 +02:00
|
|
|
{ "dump-fsmonitor", cmd__dump_fsmonitor },
|
2018-03-24 08:44:40 +01:00
|
|
|
{ "dump-split-index", cmd__dump_split_index },
|
2018-09-09 19:36:27 +02:00
|
|
|
{ "dump-untracked-cache", cmd__dump_untracked_cache },
|
2018-03-24 08:44:41 +01:00
|
|
|
{ "example-decorate", cmd__example_decorate },
|
2018-03-24 08:44:42 +01:00
|
|
|
{ "genrandom", cmd__genrandom },
|
tests: teach the test-tool to generate NUL bytes and use it
In cc95bc2025 (t5562: replace /dev/zero with a pipe from
generate_zero_bytes, 2019-02-09), we replaced usage of /dev/zero (which
is not available on NonStop, apparently) by a Perl script snippet to
generate NUL bytes.
Sadly, it does not seem to work on NonStop, as t5562 reportedly hangs.
Worse, this also hangs in the Ubuntu 16.04 agents of the CI builds on
Azure Pipelines: for some reason, the Perl script snippet that is run
via `generate_zero_bytes` in t5562's 'CONTENT_LENGTH overflow ssite_t'
test case tries to write out an infinite amount of NUL bytes unless a
broken pipe is encountered, that snippet never encounters the broken
pipe, and keeps going until the build times out.
Oddly enough, this does not reproduce on the Windows and macOS agents,
nor in a local Ubuntu 18.04.
This developer tried for a day to figure out the exact circumstances
under which this hang happens, to no avail, the details remain a
mystery.
In the end, though, what counts is that this here change incidentally
fixes that hang (maybe also on NonStop?). Even more positively, it gets
rid of yet another unnecessary Perl invocation.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-02-14 22:33:12 +01:00
|
|
|
{ "genzeros", cmd__genzeros },
|
2018-03-24 08:44:43 +01:00
|
|
|
{ "hashmap", cmd__hashmap },
|
2018-11-14 05:09:34 +01:00
|
|
|
{ "hash-speed", cmd__hash_speed },
|
2018-03-24 08:44:44 +01:00
|
|
|
{ "index-version", cmd__index_version },
|
2018-07-13 18:54:08 +02:00
|
|
|
{ "json-writer", cmd__json_writer },
|
2018-03-24 08:44:33 +01:00
|
|
|
{ "lazy-init-name-hash", cmd__lazy_init_name_hash },
|
2018-03-24 08:44:45 +01:00
|
|
|
{ "match-trees", cmd__match_trees },
|
2018-03-24 08:44:46 +01:00
|
|
|
{ "mergesort", cmd__mergesort },
|
2018-03-24 08:44:47 +01:00
|
|
|
{ "mktemp", cmd__mktemp },
|
2019-06-15 12:06:59 +02:00
|
|
|
{ "oidmap", cmd__oidmap },
|
2018-03-24 08:44:48 +01:00
|
|
|
{ "online-cpus", cmd__online_cpus },
|
2018-09-09 19:36:29 +02:00
|
|
|
{ "parse-options", cmd__parse_options },
|
2019-12-31 11:15:12 +01:00
|
|
|
{ "parse-pathspec-file", cmd__parse_pathspec_file },
|
2018-03-24 08:44:49 +01:00
|
|
|
{ "path-utils", cmd__path_utils },
|
2018-09-09 19:36:28 +02:00
|
|
|
{ "pkt-line", cmd__pkt_line },
|
2018-03-24 08:44:50 +01:00
|
|
|
{ "prio-queue", cmd__prio_queue },
|
Test the progress display
'progress.c' has seen a few fixes recently [1], and, unfortunately,
some of those fixes required further fixes [2]. It seems it's time to
have a few tests focusing on the subtleties of the progress display.
Add the 'test-tool progress' subcommand to help testing the progress
display, reading instructions from standard input and turning them
into calls to the display_progress() and display_throughput()
functions with the given parameters.
The progress display is, however, critically dependent on timing,
because it's only updated once every second or, if the toal is known
in advance, every 1%, and there is the throughput rate as well. These
make the progress display far too undeterministic for testing as-is.
To address this, add a few testing-specific variables and functions to
'progress.c', allowing the the new test helper to:
- Disable the triggered-every-second SIGALRM and set the
'progress_update' flag explicitly based in the input instructions.
This way the progress line will be updated deterministically when
the test wants it to be updated.
- Specify the time elapsed since start_progress() to make the
throughput rate calculations deterministic.
Add the new test script 't0500-progress-display.sh' to check a few
simple cases with and without throughput, and that a shorter progress
line properly covers up the previously displayed line in different
situations.
[1] See commits 545dc345eb (progress: break too long progress bar
lines, 2019-04-12) and 9f1fd84e15 (progress: clear previous
progress update dynamically, 2019-04-12).
[2] 1aed1a5f25 (progress: avoid empty line when breaking the progress
line, 2019-05-19)
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-16 22:54:12 +02:00
|
|
|
{ "progress", cmd__progress },
|
2018-07-20 18:33:15 +02:00
|
|
|
{ "reach", cmd__reach },
|
2018-03-24 08:44:51 +01:00
|
|
|
{ "read-cache", cmd__read_cache },
|
2019-11-12 17:58:20 +01:00
|
|
|
{ "read-graph", cmd__read_graph },
|
2018-07-12 21:39:23 +02:00
|
|
|
{ "read-midx", cmd__read_midx },
|
2018-03-24 08:44:52 +01:00
|
|
|
{ "ref-store", cmd__ref_store },
|
2018-03-24 08:44:53 +01:00
|
|
|
{ "regex", cmd__regex },
|
2018-07-12 00:42:42 +02:00
|
|
|
{ "repository", cmd__repository },
|
2018-03-24 08:44:54 +01:00
|
|
|
{ "revision-walking", cmd__revision_walking },
|
2018-03-24 08:44:55 +01:00
|
|
|
{ "run-command", cmd__run_command },
|
2018-03-24 08:44:56 +01:00
|
|
|
{ "scrap-cache-tree", cmd__scrap_cache_tree },
|
2019-04-18 15:16:51 +02:00
|
|
|
{ "serve-v2", cmd__serve_v2 },
|
2018-03-24 08:44:32 +01:00
|
|
|
{ "sha1", cmd__sha1 },
|
2018-09-09 19:36:26 +02:00
|
|
|
{ "sha1-array", cmd__sha1_array },
|
2018-11-14 05:09:36 +01:00
|
|
|
{ "sha256", cmd__sha256 },
|
2018-03-24 08:44:58 +01:00
|
|
|
{ "sigchain", cmd__sigchain },
|
2018-03-24 08:44:59 +01:00
|
|
|
{ "strcmp-offset", cmd__strcmp_offset },
|
2018-03-24 08:45:00 +01:00
|
|
|
{ "string-list", cmd__string_list },
|
2018-03-24 08:45:01 +01:00
|
|
|
{ "submodule-config", cmd__submodule_config },
|
2018-10-25 18:18:13 +02:00
|
|
|
{ "submodule-nested-repo-config", cmd__submodule_nested_repo_config },
|
2018-03-24 08:45:02 +01:00
|
|
|
{ "subprocess", cmd__subprocess },
|
2019-02-22 23:25:10 +01:00
|
|
|
{ "trace2", cmd__trace2 },
|
2018-03-24 08:45:03 +01:00
|
|
|
{ "urlmatch-normalization", cmd__urlmatch_normalization },
|
2019-01-29 15:19:27 +01:00
|
|
|
{ "xml-encode", cmd__xml_encode },
|
2018-03-24 08:45:04 +01:00
|
|
|
{ "wildmatch", cmd__wildmatch },
|
2018-09-11 22:06:01 +02:00
|
|
|
#ifdef GIT_WINDOWS_NATIVE
|
|
|
|
{ "windows-named-pipe", cmd__windows_named_pipe },
|
|
|
|
#endif
|
2018-03-24 08:45:05 +01:00
|
|
|
{ "write-cache", cmd__write_cache },
|
2018-03-24 08:44:30 +01:00
|
|
|
};
|
|
|
|
|
2018-10-17 11:25:07 +02:00
|
|
|
static NORETURN void die_usage(void)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
fprintf(stderr, "usage: test-tool <toolname> [args]\n");
|
|
|
|
for (i = 0; i < ARRAY_SIZE(cmds); i++)
|
|
|
|
fprintf(stderr, " %s\n", cmds[i].name);
|
|
|
|
exit(128);
|
|
|
|
}
|
|
|
|
|
2018-03-24 08:44:30 +01:00
|
|
|
int cmd_main(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
2019-04-18 15:16:49 +02:00
|
|
|
const char *working_directory = NULL;
|
|
|
|
struct option options[] = {
|
|
|
|
OPT_STRING('C', NULL, &working_directory, "directory",
|
|
|
|
"change the working directory"),
|
|
|
|
OPT_END()
|
|
|
|
};
|
2018-03-24 08:44:30 +01:00
|
|
|
|
2018-05-02 11:38:28 +02:00
|
|
|
BUG_exit_code = 99;
|
2019-04-18 15:16:49 +02:00
|
|
|
argc = parse_options(argc, argv, NULL, options, test_tool_usage,
|
|
|
|
PARSE_OPT_STOP_AT_NON_OPTION |
|
|
|
|
PARSE_OPT_KEEP_ARGV0);
|
|
|
|
|
2018-03-24 08:44:30 +01:00
|
|
|
if (argc < 2)
|
2018-10-17 11:25:07 +02:00
|
|
|
die_usage();
|
2018-03-24 08:44:30 +01:00
|
|
|
|
2019-04-18 15:16:49 +02:00
|
|
|
if (working_directory && chdir(working_directory) < 0)
|
|
|
|
die("Could not cd to '%s'", working_directory);
|
|
|
|
|
2018-03-24 08:44:30 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(cmds); i++) {
|
|
|
|
if (!strcmp(cmds[i].name, argv[1])) {
|
|
|
|
argv++;
|
|
|
|
argc--;
|
2019-02-22 23:25:01 +01:00
|
|
|
trace2_cmd_name(cmds[i].name);
|
|
|
|
trace2_cmd_list_config();
|
2018-03-24 08:44:30 +01:00
|
|
|
return cmds[i].fn(argc, argv);
|
|
|
|
}
|
|
|
|
}
|
2018-10-17 11:25:07 +02:00
|
|
|
error("there is no tool named '%s'", argv[1]);
|
|
|
|
die_usage();
|
2018-03-24 08:44:30 +01:00
|
|
|
}
|