Force language to C in gdb.compile/compile-ifunc.exp
authorLuis Machado <lgustavo@codesourcery.com>
Thu, 27 Aug 2015 04:49:05 +0000 (01:49 -0300)
committerLuis Machado <lgustavo@codesourcery.com>
Thu, 27 Aug 2015 04:49:05 +0000 (01:49 -0300)
Due to the lack of debug information in the binary, GDB is unable to figure
out what language is being used.  This may be a problem when doing remote
debugging and the binary stops at the entry point containing asm code.

In this case GDB will switch to asm as current language and will not switch
back to C when it reaches main, which in turn causes the compile feature check
to malfunction.

This is solved by forcing the language to C after reaching main.

gdb/testsuite/ChangeLog:

2015-08-26  Luis Machado  <lgustavo@codesourcery.com>

* gdb.compile/compile-ifunc.exp (with_test_prefix): Force language
to C.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.compile/compile-ifunc.exp

index 5bba9d7305e1c0e97b9115f8bed647886bef01ac..7b271e2b8c039e59508c0e17e5d3eebbf20caf6e 100644 (file)
@@ -1,3 +1,8 @@
+2015-08-26  Luis Machado  <lgustavo@codesourcery.com>
+
+       * gdb.compile/compile-ifunc.exp (with_test_prefix): Force language
+       to C.
+
 2015-08-26  Patrick Palka  <patrick@parcs.ath.cx>
 
        * gdb.base/run-after-attach.exp: New test file.
index 026c62f69a84264bca04555411a5c7d4983541f3..3a96552b6ef0073a08ddc83593dc35bc5bcdeba0 100644 (file)
@@ -25,6 +25,12 @@ with_test_prefix "nodebug" {
        return -1
     }
 
+    # This binary has no debug information, so force the language to C in case
+    # GDB happened to see real asm code when it stopped at the entry point
+    # when talking to a remote target, like gdbserver.  This guarantees the
+    # feature check below will work.
+    gdb_test_no_output "set language c" ""
+
     if {[skip_compile_feature_tests]} {
        untested "compile command not supported (could not find libcc1 shared library?)"
        return -1
This page took 0.029541 seconds and 4 git commands to generate.