]> git.ipfire.org Git - thirdparty/git.git/blob - t/helper/test-parse-pathspec-file.c
Merge branch 'es/test-cron-safety'
[thirdparty/git.git] / t / helper / test-parse-pathspec-file.c
1 #include "test-tool.h"
2 #include "parse-options.h"
3 #include "pathspec.h"
4
5 int cmd__parse_pathspec_file(int argc, const char **argv)
6 {
7 struct pathspec pathspec;
8 char *pathspec_from_file = NULL;
9 int pathspec_file_nul = 0, i;
10
11 static const char *const usage[] = {
12 "test-tool parse-pathspec-file --pathspec-from-file [--pathspec-file-nul]",
13 NULL
14 };
15
16 struct option options[] = {
17 OPT_PATHSPEC_FROM_FILE(&pathspec_from_file),
18 OPT_PATHSPEC_FILE_NUL(&pathspec_file_nul),
19 OPT_END()
20 };
21
22 parse_options(argc, argv, NULL, options, usage, 0);
23
24 parse_pathspec_file(&pathspec, 0, 0, NULL, pathspec_from_file,
25 pathspec_file_nul);
26
27 for (i = 0; i < pathspec.nr; i++)
28 printf("%s\n", pathspec.items[i].original);
29
30 clear_pathspec(&pathspec);
31 free(pathspec_from_file);
32 return 0;
33 }