Lines Matching refs:match

136         atf_fail "not-signal:kill did not match kill -1"
220 atf_set "descr" "Tests for the -o option using the 'match:' argument"
224 h_pass "printf no-newline" -o "match:^no-newline"
225 h_pass "echo line1; echo foo bar" -o "match:^foo"
226 h_pass "echo foo bar" -o "match:o b"
227 h_fail "echo foo bar" -o "match:baz"
228 h_fail "echo foo bar" -o "match:^bar"
240 cmp -s out exp || atf_fail "Saved output does not match expected results"
250 h_pass "echo foo bar" -o match:foo -o match:bar
251 h_pass "echo foo; echo bar" -o match:foo -o match:bar
252 h_fail "echo foo baz" -o match:bar -o match:foo
253 h_fail "echo foo; echo baz" -o match:bar -o match:foo
266 h_pass "echo foo bar" -o match:foo
267 h_fail "echo foo bar" -o not-match:foo
337 cmp -s out exp || atf_fail "Saved output does not match expected results"
343 atf_set "descr" "Tests for the -e option using the 'match:' argument"
347 h_pass "printf no-newline 1>&2" -e "match:^no-newline"
348 h_pass "echo line1 1>&2; echo foo bar 1>&2" -e "match:^foo"
349 h_pass "echo foo bar 1>&2" -e "match:o b"
350 h_fail "echo foo bar 1>&2" -e "match:baz"
351 h_fail "echo foo bar 1>&2" -e "match:^bar"
361 h_pass "echo foo bar 1>&2" -e match:foo -e match:bar
362 h_pass "echo foo 1>&2; echo bar 1>&2" -e match:foo -e match:bar
363 h_fail "echo foo baz 1>&2" -e match:bar -e match:foo
364 h_fail "echo foo 1>&2; echo baz 1>&2" -e match:bar -e match:foo
377 h_pass "echo foo bar 1>&2" -e match:foo
378 h_fail "echo foo bar 1>&2" -e not-match:foo
388 echo "hello" | ${Atf_Check} -o match:"hello" cat || \