Lines Matching refs:proc

80                           struct support_capture_subprocess *proc)  in report_subprocess_output()  argument
85 name, proc->out.buffer, name); in report_subprocess_output()
95 struct support_capture_subprocess proc = support_capture_subprocess in test_run() local
97 support_capture_subprocess_check (&proc, "subprocess_no_change", in test_run()
99 support_capture_subprocess_free (&proc); in test_run()
106 proc = support_capture_subprocess (&subprocess_closed_descriptor, NULL); in test_run()
109 report_subprocess_output ("subprocess_closed_descriptor", &proc); in test_run()
110 TEST_VERIFY (strstr (proc.out.buffer, expected) != NULL); in test_run()
111 support_capture_subprocess_check (&proc, "subprocess_closed_descriptor", in test_run()
113 support_capture_subprocess_free (&proc); in test_run()
121 proc = support_capture_subprocess (&subprocess_opened_descriptor, NULL); in test_run()
124 report_subprocess_output ("subprocess_opened_descriptor", &proc); in test_run()
125 TEST_VERIFY (strstr (proc.out.buffer, expected) != NULL); in test_run()
126 support_capture_subprocess_check (&proc, "subprocess_opened_descriptor", in test_run()
128 support_capture_subprocess_free (&proc); in test_run()
137 proc = support_capture_subprocess (&subprocess_changed_descriptor, NULL); in test_run()
140 report_subprocess_output ("subprocess_changed_descriptor", &proc); in test_run()
141 TEST_VERIFY (strstr (proc.out.buffer, expected) != NULL); in test_run()
142 support_capture_subprocess_check (&proc, "subprocess_changed_descriptor", in test_run()
144 support_capture_subprocess_free (&proc); in test_run()