This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] Test adjustments for Symbian OS


Three obvious changes:

  - This is the first remote target with args support but no
  watchpoint support, so commands.exp was not prepared.
  - float.exp should allow ARM targets without an FPU, since the XML
  descriptions support this.
  - The Symbian linker directs calls to global symbols through PLT
  entries even within a single executable.

Tested arm-symbianelf and x86_64-linux, checked in.

-- 
Daniel Jacobowitz
CodeSourcery

2008-05-08  Daniel Jacobowitz  <dan@codesourcery.com>

	* gdb.base/commands.exp (watchpoint_command_test): Handle
	gdb,no_hardware_watchpoints.
	* gdb.base/float.exp: Allow ARM targets without floating point.
	* gdb.base/step-test.exp: Allow callee@plt when stepping in.

--- gdb.base/commands.exp	(revision 1039)
+++ gdb.base/commands.exp	(local)
@@ -274,6 +274,11 @@ proc watchpoint_command_test {} {
         return
     }
 
+    # Disable hardware watchpoints if necessary.
+    if [target_info exists gdb,no_hardware_watchpoints] {
+	gdb_test "set can-use-hw-watchpoints 0" "" ""
+    }
+
     gdb_test "set args 6" "" "set args in watchpoint_command_test"
     if { ![runto factorial] } then { return }
     delete_breakpoints
--- gdb.base/float.exp	(revision 1039)
+++ gdb.base/float.exp	(local)
@@ -56,7 +56,14 @@ if { [istarget "alpha*-*-*"] } then {
 } elseif { [istarget "arm*-*-*"] || \
 	[istarget "xscale*-*-*"] || \
 	[istarget "strongarm*-*-*"] } then {
-    gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float"
+    gdb_test_multiple "info float" "info float" {
+	-re "Software FPU type.*mask:.*flags:.*$gdb_prompt $" {
+	    pass "info float (FPA)"
+	}
+        -re "No floating.point info available for this processor.*" {
+            pass "info float (without FPU)"
+	}
+    }
 } elseif { [istarget "i?86-*-*"] || [istarget "x86_64-*-*"] } then {
     gdb_test "info float" "R7:.*Status Word:.*Opcode:.*" "info float"
 } elseif [istarget "ia64-*-*"] then {
--- gdb.base/step-test.exp	(revision 1039)
+++ gdb.base/step-test.exp	(local)
@@ -128,8 +128,11 @@ proc test_i {name command here there} {
 test_i "stepi to next line" "stepi" \
        ".*${decimal}.*a.*5.* = a.*3" \
        ".*${decimal}.*callee.*STEPI"
+
+# Continue to step until we enter the function.  Also keep stepping
+# if this passes through a (useless) PLT entry.
 test_i "stepi into function" "stepi" \
-       ".*${decimal}.*callee.*STEPI" \
+       "(.*${decimal}.*callee.*STEPI|.* in callee@plt)" \
        ".*callee \\(\\) at .*step-test\\.c" 
 
 # Continue to step until we reach the function's body.  This makes it


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]