Lines Matching refs:post
85 # - post: <post-test check command> (default: none)
86 # - cleanup: <post-test cleanup cmd> (default: none)
121 # The post-test command, if present, must return 0 and its stdout must match
122 # the expected stdout which is kept in <test>.post.exp*.
166 my $post; # check command after running test
176 post => 0);
308 ($prereq, $post, $cleanup) = (undef, undef, undef);
356 } elsif ($line =~ /^\s*post:\s*(.*)$/) {
357 $post = $1;
589 # Maybe do post-test check
590 if (defined $post) {
591 if (mysystem("$post > $name.post.out") != 0) {
592 print("post check failed: $post\n");
593 $num_failures{"post"}++;
595 # Find all the .post.exp files. If none, use /dev/null.
596 my @post_exps = <$name.post.exp*>;
598 do_diffs($fullname, $name, "post", \@post_exps);
676 . "%d post failure%s ==\n",
682 $num_failures{"post"}, plural($num_failures{"post"}));
744 0 == $num_failures{"post"}) {