Skip to content

Commit

Permalink
Merge 7b3f37a into 1a3ff37
Browse files Browse the repository at this point in the history
  • Loading branch information
chu11 committed Jun 21, 2018
2 parents 1a3ff37 + 7b3f37a commit 98287c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/libsubprocess/subprocess.c
Expand Up @@ -169,7 +169,7 @@ static int subprocess_run_hooks (struct subprocess *p, zlist_t *hooks)

/*
* Default handler for stdout/err: send output directly into
* stderr of caller...
* stdout/err of caller...
*/
static int send_output_to_stream (const char *name, const char *json_str)
{
Expand Down
2 changes: 1 addition & 1 deletion src/common/libsubprocess/test/subprocess.c
Expand Up @@ -189,7 +189,7 @@ int main (int ac, char **av)
is (subprocess_state_string (p), "Waiting", "subprocess is Waiting");
ok (subprocess_pid (p) > 0, "subprocess_pid() is valid");

ok (subprocess_exec (p) == 0, "subprocess_run");
ok (subprocess_exec (p) == 0, "subprocess_exec");
is (subprocess_state_string (p), "Running", "subprocess is Running");
q = subprocess_manager_wait (sm);
ok (q != NULL, "subprocess_manager_wait");
Expand Down

0 comments on commit 98287c0

Please sign in to comment.