aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2010-08-16 18:01:40 +0000
committerDoug Evans <dje@google.com>2010-08-16 18:01:40 +0000
commit70ebf4ed1a2872d940df413696837481871a5af9 (patch)
tree3d45bf3a119548adf4b9799f45e1732426bc4675
parent2c1001f6e69c6c323f75ab856223ab97d3775879 (diff)
downloadfsf-binutils-gdb-70ebf4ed1a2872d940df413696837481871a5af9.zip
fsf-binutils-gdb-70ebf4ed1a2872d940df413696837481871a5af9.tar.gz
fsf-binutils-gdb-70ebf4ed1a2872d940df413696837481871a5af9.tar.bz2
* gdb.python/python.exp: Fix syntax in "post event insertion" test.
-rw-r--r--gdb/testsuite/ChangeLog4
-rw-r--r--gdb/testsuite/gdb.python/python.exp2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index e26a138..14e6d32 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2010-08-16 Doug Evans <dje@google.com>
+
+ * gdb.python/python.exp: Fix syntax in "post event insertion" test.
+
2010-08-11 Phil Muldoon <pmuldoon@redhat.com>
* gdb.python/python.exp (gdb_py_test_multiple): Add gdb.post_event
diff --git a/gdb/testsuite/gdb.python/python.exp b/gdb/testsuite/gdb.python/python.exp
index dc04911..1f4a2a8 100644
--- a/gdb/testsuite/gdb.python/python.exp
+++ b/gdb/testsuite/gdb.python/python.exp
@@ -124,7 +124,7 @@ gdb_test "python print x" "23"
gdb_py_test_multiple "post event insertion" \
"python" "" \
"someVal = 0" "" \
- "class Foo():" "" \
+ "class Foo(object):" "" \
" def __call__(self):" "" \
" global someVal" "" \
" someVal += 1" "" \