aboutsummaryrefslogtreecommitdiff
path: root/tests/process-run
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-07-27 18:00:16 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-07-27 18:00:16 +0300
commit822059e4e69547f8e97a1cd219912f55826b0414 (patch)
treedc99f504046fb96b5cc3b1189c3d4107c03f96b7 /tests/process-run
parent40426fe405dc795668351cb41bd50d8d08e5b094 (diff)
Rename process_start() and process_run() overloads
Diffstat (limited to 'tests/process-run')
-rw-r--r--tests/process-run/driver.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/process-run/driver.cxx b/tests/process-run/driver.cxx
index ff9dd25..695fdb9 100644
--- a/tests/process-run/driver.cxx
+++ b/tests/process-run/driver.cxx
@@ -65,14 +65,14 @@ main (int argc, const char* argv[])
assert (run (0, 1, 2, p));
assert (run (0, 1, 2, p, "-c"));
- process_run ([] (const char* c[], size_t n)
- {
- process::print (cout, c, n);
- cout << endl;
- },
- 0, 1, 2,
- p,
- "-c");
+ process_run_callback ([] (const char* c[], size_t n)
+ {
+ process::print (cout, c, n);
+ cout << endl;
+ },
+ 0, 1, 2,
+ p,
+ "-c");
// Stream conversion and redirection.
//