2 * test-run-command.c: test run command API.
4 * (C) 2009 Ilari Liusvaara <ilari.liusvaara@elisanet.fi>
6 * This code is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include "git-compat-util.h"
12 #include "run-command.h"
13 #include "argv-array.h"
18 static int number_callbacks
;
19 static int parallel_next(struct child_process
*cp
,
24 struct child_process
*d
= cb
;
25 if (number_callbacks
>= 4)
28 argv_array_pushv(&cp
->args
, d
->argv
);
29 strbuf_addf(err
, "preloaded output of a child\n");
34 static int no_job(struct child_process
*cp
,
39 strbuf_addf(err
, "no further jobs available\n");
43 static int task_finished(int result
,
48 strbuf_addf(err
, "asking for a quick stop\n");
52 int main(int argc
, char **argv
)
54 struct child_process proc
= CHILD_PROCESS_INIT
;
59 proc
.argv
= (const char **)argv
+ 2;
61 if (!strcmp(argv
[1], "start-command-ENOENT")) {
62 if (start_command(&proc
) < 0 && errno
== ENOENT
)
64 fprintf(stderr
, "FAIL %s\n", argv
[1]);
67 if (!strcmp(argv
[1], "run-command"))
68 exit(run_command(&proc
));
71 proc
.argv
= (const char **)argv
+ 3;
73 if (!strcmp(argv
[1], "run-command-parallel"))
74 exit(run_processes_parallel(jobs
, parallel_next
,
77 if (!strcmp(argv
[1], "run-command-abort"))
78 exit(run_processes_parallel(jobs
, parallel_next
,
79 NULL
, task_finished
, &proc
));
81 if (!strcmp(argv
[1], "run-command-no-jobs"))
82 exit(run_processes_parallel(jobs
, no_job
,
83 NULL
, task_finished
, &proc
));
85 fprintf(stderr
, "check usage\n");