Lines Matching refs:exp
80 # Expected stdout (filtered) is kept in <test>.stdout.exp* (can be more
82 # stderr (filtered) is kept in <test>.stderr.exp*. There must be at least
83 # one stderr.exp* file. Any .exp* file that ends in '~' or '#' is ignored;
87 # expected stdout and stderr for progB are in <test>.stdoutB.exp*
88 # and <test>.stderrB.exp*.
103 # the expected stdout which is kept in <test>.post.exp*.
349 # $n is the (optional) suffix after the ".exp"; we tack it onto
352 if ($f_exp =~ /.*\.exp(.*)$/) {
356 ($f_exp eq "/dev/null") or die "Unexpected .exp file: $f_exp\n";
369 # If we reach here, none of the .exp files matched.
442 # Find all the .stdout.exp files. If none, use /dev/null.
443 my @stdout_exps = <$name.stdout.exp*>;
451 # Find all the .stderr.exp files. At least one must exist.
452 my @stderr_exps = <$name.stderr.exp*>;
453 (0 != scalar @stderr_exps) or die "Could not find `$name.stderr.exp*'\n";
475 # Find all the .stdoutB.exp files. If none, use /dev/null.
476 my @stdoutB_exps = <$name.stdoutB.exp*>;
484 # Find all the .stderrB.exp files. At least one must exist.
485 my @stderrB_exps = <$name.stderrB.exp*>;
486 (0 != scalar @stderrB_exps) or die "Could not find `$name.stderrB.exp*'\n";
496 # Find all the .post.exp files. If none, use /dev/null.
497 my @post_exps = <$name.post.exp*>;