2012-02-02 Pedro Alves <palves@redhat.com>
authorPedro Alves <palves@redhat.com>
Thu, 2 Feb 2012 18:09:07 +0000 (18:09 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 2 Feb 2012 18:09:07 +0000 (18:09 +0000)
* gdb.gdb/complaints.exp: Skip if gdb,noinferiorio is set.
* gdb.gdb/selftest.exp (test_with_self): Handle gdb,noinferiorio.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.gdb/complaints.exp
gdb/testsuite/gdb.gdb/selftest.exp

index b036df4001de02b74efd7d216883eba932930133..573ecbe9dd563e59fd68f27dd6bdc67156172a04 100644 (file)
@@ -1,3 +1,8 @@
+2012-02-02  Pedro Alves  <palves@redhat.com>
+
+       * gdb.gdb/complaints.exp: Skip if gdb,noinferiorio is set.
+       * gdb.gdb/selftest.exp (test_with_self): Handle gdb,noinferiorio.
+
 2012-02-02  Pedro Alves  <palves@redhat.com>
 
        * gdb.base/term.exp: Rewrite.
index 5ec02ffea680f92c1431b822c1b79eea8dfc9bbd..97a327002f2045c7448ac52e7bf7fe10b70e128d 100644 (file)
@@ -23,6 +23,11 @@ if { [is_remote target] || ![isnative] } then {
     return
 }
 
+if [target_info exists gdb,noinferiorio] {
+    verbose "Skipping because of no inferiorio capabilities."
+    return
+}
+
 proc setup_test { executable } {
     global gdb_prompt
     global timeout
index 21798bcb251dea746c81c0517e198a71225a427d..1ffa94524e13174e5961b449f7d1d9f2abe6b862 100644 (file)
@@ -394,19 +394,29 @@ proc test_with_self { executable } {
     }
 
     # start the "xgdb" process
-    gdb_test_multiple "continue" "xgdb is at prompt" {
-       -re "GNU gdb \[0-9\.\]*.*Copyright \\(C\\) \[0-9\]* Free Software Foundation, Inc.*License GPLv3\\+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.*This is free software: you are free to change and redistribute it.*There is NO WARRANTY, to the extent permitted by law.  Type \"show copying\".*and \"show warranty\" for details.*This GDB was configured as .*$gdb_prompt $" {
-           pass "xgdb is at prompt"
+    if [target_info exists gdb,noinferiorio] {
+       # Maybe testing with a local extended-remote gdbserver.  With
+       # no way to interact with inferior GDB, all we can do is let
+       # it run.
+       send_gdb "continue\n"
+       # Wait a bit while the inferior gdb gets to its prompt.
+       sleep 1
+    } else {
+       set test "xgdb is at prompt"
+       gdb_test_multiple "continue" $test {
+           -re "GNU gdb \[0-9\.\]*.*Copyright \\(C\\) \[0-9\]* Free Software Foundation, Inc.*License GPLv3\\+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.*This is free software: you are free to change and redistribute it.*There is NO WARRANTY, to the extent permitted by law.  Type \"show copying\".*and \"show warranty\" for details.*This GDB was configured as .*$gdb_prompt $" {
+               pass $test
+           }
        }
-    }
-    
-    # set xgdb prompt so we can tell which is which
-    gdb_test_multiple "set prompt (xgdb) " "Set xgdb_prompt" {
-       -re "\[(\]xgdb\[)\].*\[(\]xgdb\[)\] $" {
-           pass "Set xgdb prompt"
+
+       # set xgdb prompt so we can tell which is which
+       gdb_test_multiple "set prompt (xgdb) " "Set xgdb_prompt" {
+           -re "\[(\]xgdb\[)\].*\[(\]xgdb\[)\] $" {
+               pass "Set xgdb prompt"
+           }
        }
     }
-    
+
     # kill the xgdb process
     set description "send ^C to child process"
     send_gdb "\003"