Lines Matching refs:expected
166 expected='bam.c bar.c'
167 [[ $* == $expected ]] ||
168 err_exit "-G **.c failed -- expected '$expected', got '$*'"
170 expected='bam.c bar bar.c bar/bam.c bar/foo.c foo foo/bam.c'
171 [[ $* == $expected ]] ||
172 err_exit "-G ** failed -- expected '$expected', got '$*'"
174 expected='bam.c bar.c bar/bam.c bar/foo.c foo/bam.c'
175 [[ $* == $expected ]] ||
176 err_exit "-G **/*.c failed -- expected '$expected', got '$*'"
178 expected='bam.c bar/bam.c foo/bam.c'
179 [[ $* == $expected ]] ||
180 err_exit "-G **/bam.c failed -- expected '$expected', got '$*'"
370 expected=${pipeline[i].nopipefail}
371 [[ $status == $expected ]] ||
372 err_exit "--nopipefail '${pipeline[i].command}' exit status $status -- expected $expected"
379 expected=${pipeline[i].pipefail}
380 if [[ $status != $expected ]]
381 then err_exit "--pipefail '${pipeline[i].command}' exit status $status -- expected $expected"