Home | History | Annotate | Download | only in unit-tests

Lines Matching refs:stdout

7 	@${MAKE} -f ${MAKEFILE} -j1 stdout-and-stderr
8 @${MAKE} -f ${MAKEFILE} -j1 echo-on-stdout-and-stderr
22 # In parallel mode, both stdout and stderr from the child process are
23 # collected in a local buffer and then written to make's stdout.
25 # expect: begin stdout-and-stderr
26 # expect: only stdout:
27 # expect: This is stdout.
30 # expect: end stdout-and-stderr
31 stdout-and-stderr:
33 @echo only stdout:
34 @${MAKE} -f ${MAKEFILE} echo-on-stdout-and-stderr 2>/dev/null
36 @${MAKE} -f ${MAKEFILE} echo-on-stdout-and-stderr 1>/dev/null
39 echo-on-stdout-and-stderr: .PHONY
40 @echo This is stdout.