Lines Matching refs:status
120 # signal, and status code).
634 $status = $?;
645 $ret = &eval_exit($test{'long-name'}, $status, $test{'expected-exit'});
651 if (($status & 0xff) == 0x7f) {
653 } elsif (($status & 0xff)) {
654 $expl = "signal " . ($status & 0x7f);
656 $expl = "exit-code " . (($status >> 8) & 0xff);
659 "\tunexpected exit status $status ($expl), expected $test{'expected-exit'}\n";
946 local($name, $status, $expect) = @_;
948 local($w, $e, $s) = ($status, ($status >> 8) & 0xff, $status & 0x7f);
950 $e = -1000 if $status & 0xff;