aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite
diff options
context:
space:
mode:
authorChristian Biesinger <cbiesinger@google.com>2019-07-29 21:00:21 -0500
committerChristian Biesinger <cbiesinger@google.com>2019-07-29 21:01:13 -0500
commit25ec8924842a215e7f684d3a5076607409ac822f (patch)
tree7df51f48f971e48343c9ed83dd9216c445973ac7 /gdb/testsuite
parentc620ed8866cc90ccfa363daf98ce7061d076d598 (diff)
downloadgdb-25ec8924842a215e7f684d3a5076607409ac822f.zip
gdb-25ec8924842a215e7f684d3a5076607409ac822f.tar.gz
gdb-25ec8924842a215e7f684d3a5076607409ac822f.tar.bz2
Fix misspelling (nonexistant -> nonexistent)
gdb/testsuite/ChangeLog: 2019-07-29 Christian Biesinger <cbiesinger@google.com> * gdb.python/py-objfile.exp: Fix misspelling (nonexistant -> nonexistent)
Diffstat (limited to 'gdb/testsuite')
-rw-r--r--gdb/testsuite/gdb.python/py-objfile.exp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.python/py-objfile.exp b/gdb/testsuite/gdb.python/py-objfile.exp
index 261f605..cfe092e 100644
--- a/gdb/testsuite/gdb.python/py-objfile.exp
+++ b/gdb/testsuite/gdb.python/py-objfile.exp
@@ -66,8 +66,8 @@ gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").lookup_static_symbo
"static_var" "lookup_static_symbol finds a valid symbol"
gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").lookup_static_symbol (\"global_var\") is None)" \
"True" "lookup_static_symbol does not find global symbol"
-gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").lookup_static_symbol (\"nonexistant\"))" \
- "None" "lookup_static_symbol can handle nonexistant symbol"
+gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").lookup_static_symbol (\"nonexistent\"))" \
+ "None" "lookup_static_symbol can handle nonexistent symbol"
set binfile_build_id [get_build_id $binfile]
if [string compare $binfile_build_id ""] {