Lines Matching refs:Out1
312 ${TEST_SH} -c '(echo line 1; echo line 2 > Out2) > Out1'
313 test "$(cat Out1)" = "line 1" || atf_fail \
314 "#$T: Incorrect Out1: Should be 'line 1' is '$(cat Out1)'"
319 ${TEST_SH} -c '{ echo line 1; echo line 2 > Out2;} > Out1'
320 test "$(cat Out1)" = "line 1" || atf_fail \
321 "#$T: Incorrect Out1: Should be 'line 1' is '$(cat Out1)'"
325 i; rm -f Out1 Out2 2>/dev/null || :
330 echo "$arg" > Out1
335 test "$(cat Out1)" = "line 3" || atf_fail \
336 "#$T: Incorrect Out1: Should be 'line 3' is '$(cat Out1)'"
340 i; rm -f Out1 Out2 2>/dev/null || :
345 echo "$arg" >> Out1
350 test "$(cat Out1)" = "line 1${nl}line 2${nl}line 3" || atf_fail \
351 "#$T: Incorrect Out1: Should be 'line 1\\nline 2\\nline 3' is '$(cat Out1)'"