From 05385fc777d642f4cf3455fc7e0b26faafa4e0f6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 3 Apr 2021 20:58:14 -0400 Subject: sim: testsuite: support exit 77 for unsupported tests Exit status 77 is common (including the autotools world) to indicate "skip this test". Add support for mapping that to "unsupported" as that's the closest in the dejagnu world. --- sim/testsuite/lib/sim-defs.exp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sim/testsuite/lib') diff --git a/sim/testsuite/lib/sim-defs.exp b/sim/testsuite/lib/sim-defs.exp index e627b6e..59c7ded 100644 --- a/sim/testsuite/lib/sim-defs.exp +++ b/sim/testsuite/lib/sim-defs.exp @@ -402,7 +402,9 @@ proc run_sim_test { name requested_machs } { set output [lindex $result 1] set status fail - if { $return_code == $opts(status) } { + if { $return_code == 77 } { + set status unsupported + } elseif { $return_code == $opts(status) } { set status pass } -- cgit v1.1