From 3e6611a693e29a09c0211d905a5836027b68868c Mon Sep 17 00:00:00 2001 From: Igor Zinkovsky Date: Fri, 29 Jul 2011 23:54:52 -0700 Subject: [PATCH] more output --- test/test-spawn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test-spawn.c b/test/test-spawn.c index 4cfe6b1e..813bf2e9 100644 --- a/test/test-spawn.c +++ b/test/test-spawn.c @@ -142,6 +142,7 @@ TEST_IMPL(spawn_stdout) { ASSERT(exit_cb_called == 1); ASSERT(close_cb_called == 2); /* Once for process once for the pipe. */ + printf("output is: %s", output); ASSERT(strcmp("hello world\n", output) == 0 || strcmp("hello world\r\n", output) == 0); return 0;