From: Tom de Vries Date: Fri, 4 Dec 2020 12:36:47 +0000 (+0100) Subject: [gdb/testsuite] Handle SIGILL in gdb.reverse/insn-reverse.exp X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c027c2f6c5cdb3db0b8c72c06b691c5ba502279;p=binutils-gdb.git [gdb/testsuite] Handle SIGILL in gdb.reverse/insn-reverse.exp Consider test-case gdb.reverse/insn-reverse.exp. It runs a number of subtests, dependent on the architecture, f.i. for x86_64 it runs subtests rdrand and rdseed. For each subtest, it checks whether the subtest is supported and otherwise bails out of that subtest. However, there may be a problem with the support test or the information it relies on, and if it states that a subtest is supported while it is actually not, we may run into a SIGILL, as f.i. described in PR21166, which results in tcl errors like this: ... ERROR: tcl error sourcing src/gdb/testsuite/gdb.reverse/insn-reverse.exp. ERROR: can't read "insn_array(5)": no such element in array ... We can emulate this by inserting a sigfpe in function rdrand in insn-reverse-x86.c, like this: ... volatile int a = 0; volatile int b = 1; volatile int c = b / a; ... The problem is that the loop in the test-case attempts to stepi over of all insn in rdrand, but because of the signal it will never get to the last insn. Handle this by detecting that the stepi made no progress, and bailing out of the loop. Furthermore, make running of the subtests independent, such that a SIGILL in subtest rdrand does not affect running of subtest rdseed. Tested on x86_64-linux. gdb/testsuite/ChangeLog: 2020-12-04 Tom de Vries * gdb.reverse/insn-reverse.c (test_nr): New var. (usage, parse_args): New function. (main): Call parse_args. Only run test for test_nr. * gdb.reverse/insn-reverse.exp: Detect lack of progress in stepi loop and bail out. Run subtests individually, using an inferior arg specifying the subtest. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index c00bc612480..36953af0d75 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,12 @@ +2020-12-04 Tom de Vries + + * gdb.reverse/insn-reverse.c (test_nr): New var. + (usage, parse_args): New function. + (main): Call parse_args. Only run test for test_nr. + * gdb.reverse/insn-reverse.exp: Detect lack of progress in stepi loop + and bail out. Run subtests individually, using an inferior arg + specifying the subtest. + 2020-12-02 Andrew Burgess * gdb.arch/riscv-tdesc-regs.exp: Remove unwanted test. diff --git a/gdb/testsuite/gdb.reverse/insn-reverse.c b/gdb/testsuite/gdb.reverse/insn-reverse.c index 08d382d080b..b3881d44251 100644 --- a/gdb/testsuite/gdb.reverse/insn-reverse.c +++ b/gdb/testsuite/gdb.reverse/insn-reverse.c @@ -15,6 +15,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +#include +#include + typedef void (*testcase_ftype) (void); /* The arch-specific files need to implement both the initialize function @@ -45,16 +48,48 @@ initialize (void) array is defined together with them. */ static int n_testcases = (sizeof (testcases) / sizeof (testcase_ftype)); +static void +usage (void) +{ + printf ("usage: insn-reverse <0-%d>\n", n_testcases - 1); +} + +static int test_nr; + +static void +parse_args (int argc, char **argv) +{ + if (argc != 2) + { + usage (); + exit (1); + } + + char *tail; + test_nr = strtol (argv[1], &tail, 10); + if (*tail != '\0') + { + usage (); + exit (1); + } + + int in_range_p = 0 <= test_nr && test_nr < n_testcases; + if (!in_range_p) + { + usage (); + exit (1); + } +} + int -main () +main (int argc, char **argv) { - int i = 0; + parse_args (argc, argv); /* Initialize any required arch-specific bits. */ initialize (); - for (i = 0; i < n_testcases; i++) - testcases[i] (); + testcases[test_nr] (); return 0; } diff --git a/gdb/testsuite/gdb.reverse/insn-reverse.exp b/gdb/testsuite/gdb.reverse/insn-reverse.exp index 174b7957517..d60f873e0d0 100644 --- a/gdb/testsuite/gdb.reverse/insn-reverse.exp +++ b/gdb/testsuite/gdb.reverse/insn-reverse.exp @@ -50,11 +50,14 @@ proc read_testcase { n } { # the contents of registers are saved, and test compares them. If # there is any differences, a FAIL is emitted. -proc test { func } { +proc test { func testcase_nr } { global hex decimal global gdb_prompt with_test_prefix "$func" { + gdb_start_cmd $testcase_nr + gdb_test "" "" "wait for prompt" + gdb_breakpoint $func gdb_test "continue" @@ -74,15 +77,23 @@ proc test { func } { # Registers contents before each forward single step. set count 0 + set insn_addr "" for {} {$count < 500} {incr count} { gdb_test_multiple "x/i \$pc" "" { -re ".* ($hex) <.*>:\[ \t\]*(.*)\r\n$gdb_prompt $" { + set prev_insn_addr $insn_addr set insn_addr $expect_out(1,string) if [expr {$last_insn == $insn_addr}] { break } + if { $prev_insn_addr == $insn_addr } { + # Failed to make progress, might have run into SIGILL. + unsupported "no progress at: $expect_out(2,string)" + break + } + set insn_array($count) $expect_out(2,string) } } @@ -125,5 +136,5 @@ if { ${n_testcases} == 0 } { for { set i 0 } { ${i} < ${n_testcases} } { incr i } { set testcase [read_testcase $i] - test $testcase + test $testcase $i }