From: Joel Brobecker Date: Tue, 22 Feb 2011 16:39:10 +0000 (+0000) Subject: small py-breakpoint.exp cleanups X-Git-Tag: cygwin-1_7_8-release~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8bfb830fcc8793a2eea79a199425ac1f274f8906;p=thirdparty%2Fbinutils-gdb.git small py-breakpoint.exp cleanups gdb/testsuite/ChangeLog: * gdb.python/py-breakpoint.exp: Remove unnecessary call to clean_restart. Be a little stricter in the expected output for one of the tests. Fix a typo in one of the comments. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 46225c08b2d..5d524d4c088 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2011-02-22 Joel Brobecker + + * gdb.python/py-breakpoint.exp: Remove unnecessary call to + clean_restart. Be a little stricter in the expected output + for one of the tests. Fix a typo in one of the comments. + 2011-02-22 Joel Brobecker * gdb.python/py-block.exp: Simplify using prepare_for_testing. diff --git a/gdb/testsuite/gdb.python/py-breakpoint.exp b/gdb/testsuite/gdb.python/py-breakpoint.exp index 6b332848c02..b9f8c4ad79c 100644 --- a/gdb/testsuite/gdb.python/py-breakpoint.exp +++ b/gdb/testsuite/gdb.python/py-breakpoint.exp @@ -28,9 +28,6 @@ if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } { return -1 } -# Start with a fresh gdb. -clean_restart ${testfile} - # Skip all tests if Python scripting is not enabled. if { [skip_python_tests] } { continue } @@ -64,7 +61,7 @@ gdb_test "python print blist\[1\].hit_count" "1" "Check breakpoint hit count" gdb_py_test_silent_cmd "python blist\[1\].ignore_count = 4" "Set breakpoint hit count" 0 gdb_continue_to_breakpoint "Break at multiply." gdb_test "python print blist\[1\].hit_count" "6" "Check breakpoint hit count" -gdb_test "print result" "545" "Check expected variable result after 6 iterations" +gdb_test "print result" " = 545" "Check expected variable result after 6 iterations" # Test breakpoint is enabled and disabled correctly.. gdb_breakpoint [gdb_get_line_number "Break at add."] @@ -148,7 +145,7 @@ if ![runto_main] then { return 0 } -# Test invisible breakpooints. +# Test invisible breakpoints. delete_breakpoints set ibp_location [gdb_get_line_number "Break at multiply."] gdb_py_test_silent_cmd "python ibp = gdb.Breakpoint(\"$ibp_location\", internal=False)" "Set invisible breakpoint" 0