summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/relocate.exp
diff options
context:
space:
mode:
authorJoern Rennecke <joern.rennecke@arc.com>2009-09-11 04:45:40 +0000
committerJoern Rennecke <joern.rennecke@arc.com>2009-09-11 04:45:40 +0000
commitc0b9c0330ac498673282832d8714d013569ca986 (patch)
tree7524276d1d63cb4ab23038ae8361a0228325863a /gdb/testsuite/gdb.base/relocate.exp
parent139d19ee035d132be681a95ece3bbe230664ea9c (diff)
downloadgdb-c0b9c0330ac498673282832d8714d013569ca986.tar.gz
gdb/insight for ARCompact (from Richard Stuckey)arc-insight_6_8-branch
Diffstat (limited to 'gdb/testsuite/gdb.base/relocate.exp')
-rw-r--r--gdb/testsuite/gdb.base/relocate.exp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.base/relocate.exp b/gdb/testsuite/gdb.base/relocate.exp
index 46f7ab6ae1f..a7beba94f94 100644
--- a/gdb/testsuite/gdb.base/relocate.exp
+++ b/gdb/testsuite/gdb.base/relocate.exp
@@ -78,7 +78,7 @@ set static_bar_addr [get_var_address static_bar]
# Make sure they have different addresses.
if { "${static_foo_addr}" == "${static_bar_addr}" } {
- fail "static variables have different addresses"
+ fail "static variables have same address"
} else {
pass "static variables have different addresses"
}
@@ -89,7 +89,7 @@ set global_bar_addr [get_var_address global_bar]
# Make sure they have different addresses.
if { "${global_foo_addr}" == "${global_bar_addr}" } {
- fail "global variables have different addresses"
+ fail "global variables have same address"
} else {
pass "global variables have different addresses"
}
@@ -100,7 +100,7 @@ set function_bar_addr [get_var_address function_bar]
# Make sure they have different addresses.
if { "${function_foo_addr}" == "${function_bar_addr}" } {
- fail "functions have different addresses"
+ fail "functions have same address"
} else {
pass "functions have different addresses"
}
@@ -126,7 +126,7 @@ set new_function_foo_addr [get_var_address function_foo]
# Make sure they have different addresses.
if { "${function_foo_addr}" == "${new_function_foo_addr}" } {
- fail "function foo has a different address"
+ fail "function foo has the same address"
} else {
pass "function foo has a different address"
}