gdb/testsuite: get_set_option_choices: expect \r\n after each item
authorSimon Marchi <simon.marchi@polymtl.ca>
Mon, 14 Nov 2022 15:10:04 +0000 (10:10 -0500)
committerSimon Marchi <simon.marchi@efficios.com>
Tue, 15 Nov 2022 15:46:38 +0000 (10:46 -0500)
I get some random failures since commit 8d45c3a82a0e ("[gdb/testsuite]
Set completions to unlimited in get_set_option_choices"), which can be
reproduced with:

    $ make check-read1 TESTS="gdb.base/parse_number.exp"

For instance:

    set architecture A^M
    Ambiguous item "A".^M
    (gdb) FAIL: gdb.base/parse_number.exp: arch=A: set architecture A

The problem is the regexp in get_set_option_choices, it is possible that
is only matches part of a completion result.  With check-read1, that is
always one letter.

Fix this by expecting the \r\n at the end of the line, so we only match
entire results.  Use ^ in match patterns to ensure we don't miss any
output.

Approved-By: Tom de Vries <tdevries@suse.de>
Change-Id: Ib1733737feab7dde0f7095866e089081a891054e

gdb/testsuite/lib/gdb.exp

index 0543da31da6b23c8be12a12e47c55473df811b50..698b3f4bd7992e1220786774595242024daa8640 100644 (file)
@@ -9156,11 +9156,16 @@ proc get_set_option_choices {set_cmd} {
 
     with_set max-completions unlimited {
        gdb_test_multiple $cmd $test {
-           -re "\r\n$set_cmd (\[^\r\n\]+)" {
+           -re "^[string_to_regexp $cmd]\r\n" {
+               exp_continue
+           }
+
+           -re "^$set_cmd (\[^\r\n\]+)\r\n" {
                lappend values $expect_out(1,string)
                exp_continue
            }
-           -re -wrap "" {
+
+           -re "^$::gdb_prompt $" {
                pass $gdb_test_name
            }
        }