Lines Matching full:language
34 # Deduce language of main()
40 # See what language gdb thinks main() is, prior to reading full symbols.
42 send_gdb "show language\n"
44 -re ".* source language is \"auto; currently c\[+\]+\".*$gdb_prompt $" {
45 pass "deduced language is C++, before full symbols"
48 fail "source language not correct for C++ (psymtabs only)"
52 fail "can't show language (timeout)"
59 # See if our idea of the language has changed.
61 send_gdb "show language\n"
63 -re ".* source language is \"auto; currently c\[+\]+\".*$gdb_prompt $" {
64 pass "deduced language is C++, after full symbols"
67 fail "source language not correct for C++ (full symbols)"
71 fail "can't show language (timeout)"
120 test_expr "set language c++" \
126 # Note: Language is already set to C++ above!