Fix test names starting with uppercase using gdb_test on a single line.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / completion.exp
index 06ccfd6735581fb4be7aff7b3111e0460eda8abc..b72ccf56d993921f98c182e9a6c499067d176429 100644 (file)
@@ -1,5 +1,4 @@
-# Copyright 1998-1999, 2002-2004, 2007-2012 Free Software Foundation,
-# Inc.
+# Copyright 1998-2016 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
 #
 
 
-if $tracelevel then {
-        strace $tracelevel
-        }
-
 
 #
 # test running programs
 #
 
-set testfile "break"
-set srcfile ${testfile}.c
-set srcfile1 ${testfile}1.c
-set binfile ${objdir}/${subdir}/${testfile}
+standard_testfile break.c break1.c
+
+if [get_compiler_info] {
+    return -1
+}
+
+if {[prepare_for_testing $testfile.exp $testfile \
+        [list $srcfile $srcfile2] {debug nowarnings}]} {
+    untested $testfile.exp
+    return -1
+}
 
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug nowarnings}] != "" } {
-     untested completion.exp
-     return -1
+if ![runto_main] then {
+        perror "tests suppressed"
 }
 
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug nowarnings}] != "" } {
-     untested completion.exp
-     return -1
+set timeout 30
+gdb_test_no_output "set max-completions unlimited"
+
+gdb_test_no_output "complete print values\[0\].x." \
+    "field completion with invalid field"
+
+# If there is a non-deprecated completion, it should be returned.
+gdb_test "complete sav" "save" "test non-deprecated completion"
+# If there is only a deprecated completion, then it should be returned.
+gdb_test "complete save-t" "save-tracepoints" "test deprecated completion"
+
+
+#
+# Tag name completion.
+#
+
+gdb_test "complete ptype struct some_" "ptype struct some_struct"
+gdb_test "complete ptype enum some_" "ptype enum some_enum"
+gdb_test "complete ptype union some_" "ptype union some_union"
+
+
+gdb_test "complete set gnutarget aut" "set gnutarget auto"
+
+
+gdb_test "complete set cp-abi aut" "set cp-abi auto"
+
+# Test that completion of commands 'target FOO' works well.
+set targets [list "core" "tfile" "exec"]
+
+# Test that completion of command 'target ctf' if GDB supports ctf
+# target.
+gdb_test_multiple "target ctf" "" {
+    -re "Undefined target command: \"ctf\"\.  Try \"help target\"\.\r\n$gdb_prompt $" {
+    }
+    -re "No CTF directory specified.*\r\n$gdb_prompt $" {
+       lappend targets "ctf"
+    }
 }
 
-if  { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug nowarnings}] != "" } {
-     untested completion.exp
-     return -1
+# Test artifacts are put in different locations depending on test
+# is a parallel run or not.  Firstly check file exists, and then
+# do the test on file completion.
+
+foreach dir1 [ list "./gdb.base" "./outputs/gdb.base/completion" ] {
+    if { [remote_file host exists ${dir1}/completion]
+        && [remote_file host exists ${dir1}/completion0.o]
+        && [remote_file host exists ${dir1}/completion1.o] } {
+       foreach target_name ${targets} {
+           gdb_test "complete target ${target_name} ${dir1}/completion" \
+               "target ${target_name} ${dir1}/completion.*${dir1}/completion0\\.o.*${dir1}/completion1\\.o.*" \
+               "complete target ${target_name}"
+       }
+       break
+    }
 }
 
-if [get_compiler_info ${binfile}] {
-    return -1;
+#
+# "set foo unlimited" completion.
+#
+
+# A var_uinteger command.
+gdb_test "complete set height " "set height unlimited"
+gdb_test "complete set height u" "set height unlimited"
+
+# A var_integer command.
+gdb_test "complete set listsize " "set listsize unlimited"
+gdb_test "complete set listsize unl" "set listsize unlimited"
+
+# A var_zuinteger_unlimited command.
+gdb_test "complete set trace-buffer-size " "set trace-buffer-size unlimited"
+gdb_test "complete set trace-buffer-size unl" "set trace-buffer-size unlimited"
+
+# Test "info registers" completion: First determine this
+# architecture's registers and reggroups...
+
+set regs_output [capture_command_output "mt print registers" \
+                    ".*Name.*Nr.*Rel.*Offset.*Size.*Type.\[^\n\]*\n"]
+append regs_output "\n"
+append regs_output [capture_command_output "mt print reggroups" \
+                       ".*Group.*Type\[^\n]*\n"]
+append regs_output "\n"
+append regs_output [capture_command_output "mt print user-registers" \
+                    ".*Name.*Nr\[^\n]*\n"]
+set all_regs {}
+foreach {- reg} [regexp -all -inline -line {^\s+(\w+)} $regs_output] {
+    lappend all_regs $reg
 }
 
-gdb_exit
+set all_regs [join [lsort -unique $all_regs]]
 
-gdb_start
-gdb_reinitialize_dir $srcdir/$subdir
-gdb_load ${binfile}
+# ... and then compare them to the completion of "info registers".
 
-if ![runto_main] then {
-        perror "tests suppressed"
+set regs_output [capture_command_output "complete info registers " ""]
+set completed_regs {}
+foreach {-> reg} [regexp -all -inline -line {^info registers (\w+\S*)} $regs_output] {
+    lappend completed_regs $reg
 }
+set completed_regs [join [lsort $completed_regs]]
+gdb_assert {{$all_regs eq $completed_regs}} "complete 'info registers '"
 
-set oldtimeout1 $timeout
-set timeout 30
+# Tests below are about tab-completion, which doesn't work if readline
+# library isn't used.  Check it first.
+
+if { ![readline_is_used] } {
+    return -1
+}
 
 set test "complete 'hfgfh'"
 send_gdb "hfgfh\t"
@@ -165,7 +246,7 @@ gdb_test_multiple "" "$test" {
     -re "^info t foo\\\x07$" {
        send_gdb "\n"
        gdb_test_multiple "" "$test" {
-           -re "Ambiguous info command \"t foo\": target, tasks, terminal, threads, tp, tracepoints, tvariables, types\\..*$gdb_prompt $" {
+           -re "Ambiguous info command \"t foo\": target, tasks, terminal, threads, tp, tracepoints, tvariables, (type-printers, )?types\\..*$gdb_prompt $" {
                pass "$test"
            }
        }
@@ -178,7 +259,7 @@ gdb_test_multiple "" "$test" {
     -re "^info t\\\x07$" {
        send_gdb "\n"
        gdb_test_multiple "" "$test" {
-           -re "Ambiguous info command \"t\": target, tasks, terminal, threads, tp, tracepoints, tvariables, types\\..*$gdb_prompt $" {
+           -re "Ambiguous info command \"t\": target, tasks, terminal, threads, tp, tracepoints, tvariables, (type-printers, )?types\\..*$gdb_prompt $" {
                pass "$test"
            }
        }
@@ -191,7 +272,7 @@ gdb_test_multiple "" "$test" {
     -re "^info t \\\x07$" {
        send_gdb "\n"
        gdb_test_multiple "" "$test" {
-           -re "Ambiguous info command \"t \": target, tasks, terminal, threads, tp, tracepoints, tvariables, types\\..*$gdb_prompt $" {
+           -re "Ambiguous info command \"t \": target, tasks, terminal, threads, tp, tracepoints, tvariables, (type-printers, )?types\\..*$gdb_prompt $" {
                pass "$test"
            }
        }
@@ -367,6 +448,45 @@ gdb_test_multiple "" "$test" {
     }
 }
 
+set test "complete 'handle signal'"
+send_gdb "handle sigq\t"
+gdb_test_multiple "" "$test" {
+    -re "^handle sigq\b\b\b\bSIGQUIT $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "SIGQUIT.*Quit.*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
+set test "complete 'handle keyword'"
+send_gdb "handle nos\t"
+gdb_test_multiple "" "$test" {
+    -re "^handle nostop $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
+set test "complete help aliases"
+send_gdb "help user-define\t"
+gdb_test_multiple "" "$test" {
+    -re "^help user-defined $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
 
 # These tests used to try completing the shorter "p b-a".
 # Unfortunately, on some systems, there are .o files in system
@@ -520,6 +640,14 @@ gdb_test "complete p &values\[0\]->z" \
     "p &values.0.->z_field" \
     "completion of field in anonymous union"
 
+gdb_test "complete ptype &values\[0\]->z" \
+    "ptype &values.0.->z_field" \
+    "ptype completion of field in anonymous union"
+
+gdb_test "complete whatis &values\[0\]->z" \
+    "whatis &values.0.->z_field" \
+    "whatis completion of field in anonymous union"
+
 # The following tests used to simply try to complete `${objdir}/file',
 # and so on.  The problem is that ${objdir} can be very long; the
 # completed filename may be more than eighty characters wide.  When
@@ -589,7 +717,7 @@ 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.*" \
@@ -648,16 +776,205 @@ gdb_test_multiple "" "$test" {
     }
 }
 
-gdb_test_no_output "complete print values\[0\].x." \
-    "field completion with invalid field"
+#
+# Tests for the location completer
+#
 
-# If there is a non-deprecated completion, it should be returned.
-gdb_test "complete sav" "save" "test non-deprecated completion"
-# If there is only a deprecated completion, then it should be returned.
-gdb_test "complete save-t" "save-tracepoints" "test deprecated completion"
+# 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 ".*Function \"$srcfile2\" not defined\..*$gdb_prompt " {
+               pass $test
+           }
+           -re "$gdb_prompt p$" {
+               fail $test
+           }
+       }
+    }
 
-# Restore globals modified in this test...
-set timeout $oldtimeout1
+    -re "$gdb_prompt p$" {
+       fail $test
+    }
+}
 
-return 0
+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"
+                   }
+               }
+           }
+           -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"
+                   }
+               }
+           }
+        }
+    }
+}
+
+set test "command-name completion limiting using complete command"
+send_gdb "complete p\n"
+gdb_test_multiple "" "$test" {
+    -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt $" {
+       pass "$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"
+                   }
+               }
+           }
+        }
+    }
+}
+
+set test "symbol-name completion limiting using complete command"
+send_gdb "complete p mark\n"
+gdb_test_multiple "" "$test" {
+    -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt $" {
+       pass "$test"
+    }
+}
+
+gdb_test_no_output "set max-completions unlimited"
+
+if {![skip_tui_tests] && ![target_info exists gdb,nointerrupts]} {
+    set test "test completion of layout names"
+    send_gdb "layout\t\t\t"
+    gdb_test_multiple "" "$test" {
+       -re "asm *next *prev *regs *split *src *\r\n$gdb_prompt layout $" {
+           pass "$test"
+       }
+    }
+    send_gdb "\003"
+    set test "quit command input after testing layout completion"
+    gdb_test_multiple "" "$test" {
+       -re "$gdb_prompt $" {
+           pass "$test"
+       }
+    }
+}
+if {![skip_tui_tests] && ![target_info exists gdb,nointerrupts]} {
+    with_test_prefix "focus command" {
+       set test "test completion"
+       send_gdb "focus \t\t"
+       gdb_test_multiple "" "$test" {
+           -re "cmd *next *prev *src *\r\n$gdb_prompt focus $" {
+               pass "$test"
+           }
+       }
+       send_gdb "\003"
+       set test "quit command input after testing completion"
+       gdb_test_multiple "" "$test" {
+           -re "$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
This page took 0.028711 seconds and 4 git commands to generate.