gdb.base/completion.exp: Fix comment typo
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / completion.exp
index f77bfe23e5cc01a39ea5e41888b6fd034f195800..e705f8cdb0e97260159b88052d2ecbedac7e8739 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1998-2015 Free Software Foundation, Inc.
+# Copyright 1998-2019 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -56,9 +56,8 @@ if [get_compiler_info] {
     return -1
 }
 
-if {[prepare_for_testing $testfile.exp $testfile \
+if {[prepare_for_testing "failed to prepare" $testfile \
         [list $srcfile $srcfile2] {debug nowarnings}]} {
-    untested $testfile.exp
     return -1
 }
 
@@ -666,7 +665,7 @@ gdb_test "complete whatis &values\[0\]->z" \
 # strategy on Tuesdays to get the cursor in the right place, that's
 # not something the testsuite should care about.
 #
-# So, we avoid long lines.  We `cd' to ${objdir} first, and then do
+# So, we avoid long lines.  We `cd' to ${srcdir} first, and then do
 # the completion relative to the current directory.
 
 # ${srcdir} may be a relative path.  We want to make sure we end up
@@ -717,19 +716,19 @@ gdb_expect {
 }
 
 # Empty COMMAND sends no newline while " " sends the newline we need.
-gdb_test " " "Source directories searched: .*" "Glob remaining of directory test"
+gdb_test " " "Source directories searched: .*" "glob remaining of directory test"
 
 gdb_test "complete file ./gdb.base/compl" \
     "file ./gdb.base/completion\\.exp.*" \
     "complete-command 'file ./gdb.base/compl'"
 
-set test "complete 'file ./gdb.base/complet'"
-send_gdb "file ./gdb.base/complet\t"
+set test "complete 'file ./gdb.base/completi'"
+send_gdb "file ./gdb.base/completi\t"
 gdb_test_multiple "" "$test" {
     -re "^file ./gdb.base/completion\\.exp $" {
        send_gdb "\n"
        # Ignore the exact error message.
-       gdb_test_multiple "" "complete 'file ./gdb.base/complet'" {
+       gdb_test_multiple "" "complete 'file ./gdb.base/completi'" {
            -re "\r\nA program is being debugged already\\.\[\r\n\]+Are you sure you want to change the file\\? \\(y or n\\) $" {
                send_gdb "n\n"
                exp_continue
@@ -750,7 +749,7 @@ gdb_test_multiple "" "$test" {
            -re "marker1.*$gdb_prompt " {
                send_gdb "\n"
                gdb_test_multiple "" "$test" {
-                   -re "All functions matching regular expression \"marker\":.*File.*break1.c:\r\nint marker1\\((void|)\\);\r\nint marker2\\(int\\).*marker3\\(char.*char.*\\).*marker4\\(long( int)?\\);.*$gdb_prompt $" {
+                   -re "All functions matching regular expression \"marker\":.*File.*break1.c:.*\tint marker1\\((void|)\\);\r\n.*:\tint marker2\\(int\\).*marker3\\(char.*char.*\\).*marker4\\(long( int)?\\);.*$gdb_prompt $" {
                        pass "$test"
                    }
                }
@@ -776,42 +775,133 @@ gdb_test_multiple "" "$test" {
     }
 }
 
+#
+# Tests for the location completer
+#
+
+# Turn off pending breakpoint support so that we don't get queried
+# all the time.
+gdb_test_no_output "set breakpoint pending off"
+
+set subsrc [string range $srcfile 0 [expr {[string length $srcfile] - 3}]]
+set test "tab complete break $subsrc"
+send_gdb "break $subsrc\t\t"
+gdb_test_multiple "" $test {
+    -re "break\.c.*break1\.c.*$gdb_prompt " {
+       send_gdb "1\t\n"
+       gdb_test_multiple "" $test {
+           -re "malformed linespec error: unexpected end of input\r\n$gdb_prompt " {
+               pass $test
+           }
+           -re "$gdb_prompt p$" {
+               fail $test
+           }
+       }
+    }
+
+    -re "$gdb_prompt p$" {
+       fail $test
+    }
+}
+
+gdb_test "complete break $subsrc" "break\.c.*break1\.c"
+
+set test "tab complete break need"
+send_gdb "break need\t"
+gdb_test_multiple "" $test {
+    -re "break need_malloc " {
+       send_gdb "\n"
+       gdb_test_multiple "" $test {
+           -re ".*Breakpoint.*at .*/$srcfile, line .*$gdb_prompt " {
+               pass $test
+               gdb_test_no_output "delete breakpoint \$bpnum" \
+                   "delete breakpoint for $test"
+           }
+           -re "$gdb_prompt p$" {
+               fail $test
+           }
+       }
+    }
+    -re "$gdb_prompt p$" {
+       fail $test
+    }
+}
+
+gdb_test "complete break need" "need_malloc"
+
+# gdb/17960
+# Enabling max-completions is necessary to trigger the bug.
+gdb_test_no_output "set max-completions 10"
+set test "tab complete break $srcfile:ma"
+send_gdb "break $srcfile:ma\t"
+gdb_test_multiple "" $test {
+    -re "break $srcfile:main " {
+       send_gdb "\n"
+       gdb_test_multiple "" $test {
+           -re ".*Breakpoint.*at .*/$srcfile, line .*$gdb_prompt " {
+               pass $test
+               gdb_test_no_output "delete breakpoint \$bpnum" \
+                   "delete breakpoint for $test"
+           }
+           -re "$gdb_prompt p$" {
+               fail $test
+           }
+       }
+    }
+    -re "$gdb_prompt p$" {
+       fail $test
+    }
+}
+
+gdb_test "complete break $srcfile:ma" "break\.c:main"
+
+# End of gdb/17960 testing.
+
 #
 # Completion limiting.
 #
 
 gdb_test_no_output "set max-completions 5"
 
-set test "command-name completion limiting using tab character"
-send_gdb "p\t"
-gdb_test_multiple "" "$test" {
-    -re "^p\\\x07$" {
-       send_gdb "\t"
-       gdb_test_multiple "" "$test" {
-           -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt p$" {
-               # Complete the command and ignore the output to resync
-               # gdb for the next test.
-               send_gdb "\n"
-               gdb_test_multiple "" "$test" {
-                   -re "$gdb_prompt $" {
-                       pass "$test"
-                   }
+proc ignore_and_resync {cmd result test} {
+    global gdb_prompt
+
+    gdb_test_multiple "" "$test" {
+       -re "^${cmd}$" {
+           # Complete the command and ignore the output
+           # to resync gdb for the next test.
+           send_gdb "\n"
+           gdb_test_multiple "" "$test" {
+               -re "$gdb_prompt $" {
+                   $result $test
                }
            }
-           -re "$gdb_prompt p$" {
-               # Complete the command and ignore the output to resync
-               # gdb for the next test.
-               send_gdb "\n"
-               gdb_test_multiple "" "$test" {
-                   -re "$gdb_prompt $" {
-                       fail "$test"
-                   }
+       }
+    }
+}
+
+proc test_tab_complete {cmd test} {
+    global gdb_prompt
+
+    send_gdb "${cmd}\t"
+    gdb_test_multiple "" "$test" {
+       -re "^${cmd}\\\x07$" {
+           send_gdb "\t"
+           gdb_test_multiple "" "$test" {
+               -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt " {
+                   ignore_and_resync $cmd pass $test
+               }
+               -re "$gdb_prompt " {
+                   ignore_and_resync $cmd fail $test
                }
            }
-        }
+       }
     }
 }
 
+test_tab_complete "p" \
+    "command-name completion limiting using tab character"
+
 set test "command-name completion limiting using complete command"
 send_gdb "complete p\n"
 gdb_test_multiple "" "$test" {
@@ -822,35 +912,8 @@ gdb_test_multiple "" "$test" {
 
 gdb_test_no_output "set max-completions 3"
 
-set test "symbol-name completion limiting using tab character"
-send_gdb "p marker\t"
-gdb_test_multiple "" "$test" {
-    -re "^p marker\\\x07$" {
-       send_gdb "\t"
-       gdb_test_multiple "" "$test" {
-           -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt p marker$" {
-               # Complete the command and ignore the output to resync
-               # gdb for the next test.
-               send_gdb "\n"
-               gdb_test_multiple "" "$test" {
-                   -re "$gdb_prompt $" {
-                       pass "$test"
-                   }
-               }
-           }
-           -re "$gdb_prompt p marker$" {
-               # Complete the command and ignore the output to resync
-               # gdb for the next test.
-               send_gdb "\n"
-               gdb_test_multiple "" "$test" {
-                   -re "$gdb_prompt $" {
-                       fail "$test"
-                   }
-               }
-           }
-        }
-    }
-}
+test_tab_complete "p marker" \
+    "symbol-name completion limiting using tab character"
 
 set test "symbol-name completion limiting using complete command"
 send_gdb "complete p mark\n"
This page took 0.029393 seconds and 4 git commands to generate.