gdb/testsuite: prefer gdb_test in gdb.dwarf2/calling-convention
authorLancelot SIX <lancelot.six@amd.com>
Wed, 25 May 2022 13:38:57 +0000 (14:38 +0100)
committerLancelot SIX <lancelot.six@amd.com>
Thu, 26 May 2022 08:37:11 +0000 (09:37 +0100)
Since ed01945057c "Make gdb_test's question non-optional if specified",
if the question and response parameters are given to gdb_test, the
framework enforces that GDB asks the question.  Before this patch, tests
needed to use gdb_test_multiple to enforce this.

This patch updates the gdb.dwarf2/calling-convention.exp testcase to use
gdb_test to check that GDB asks a question.  This replaces the more
complicated gdb_test_multiple based implementation.

Tested on x86_64-gnu-linux.

Change-Id: I7216e822ca68f2727e0450970097d74c27c432fe

gdb/testsuite/gdb.dwarf2/calling-convention.exp

index 77107a42350ef1ac12ef6547ef2bf4b7f7fa314a..8c87a69ebdf8ebfafbf00aa324b3d8e9484fff85 100644 (file)
@@ -83,12 +83,14 @@ gdb_test "call foo ()" \
 gdb_breakpoint "foo"
 gdb_continue_to_breakpoint "foo"
 
-gdb_test_multiple "return 35" "" {
-    -re "Function 'foo' does not follow the target calling convention.\r\nIf you continue, setting the return value will probably lead to unpredictable behaviors.\r\nMake foo return now\\? \\(y or n\\) $" {
-       pass $gdb_test_name
-       gdb_test "n" "Not confirmed" "cancel return"
-    }
-}
+gdb_test "return 35" \
+       "Not confirmed" \
+       "return 35" \
+       [multi_line \
+           "Function 'foo' does not follow the target calling convention\\." \
+           "If you continue, setting the return value will probably lead to unpredictable behaviors\\." \
+           "Make foo return now\\? \\(y or n\\) $"] \
+       "n"
 
 gdb_test "finish" [multi_line \
     "Run till exit from #0  $hex in foo \\(\\)" \