From patchwork Fri Jan 20 14:37:25 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Machado X-Patchwork-Id: 18964 Received: (qmail 51382 invoked by alias); 20 Jan 2017 14:37:50 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 49447 invoked by uid 89); 20 Jan 2017 14:37:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 20 Jan 2017 14:37:36 +0000 Received: from svr-orw-fem-06.mgc.mentorg.com ([147.34.97.120]) by relay1.mentorg.com with esmtp id 1cUaJq-0007dm-Ht from Luis_Gustavo@mentor.com for gdb-patches@sourceware.org; Fri, 20 Jan 2017 06:37:34 -0800 Received: from Opsys.world.mentorg.com (147.34.91.1) by SVR-ORW-FEM-06.mgc.mentorg.com (147.34.97.120) with Microsoft SMTP Server id 14.3.224.2; Fri, 20 Jan 2017 06:37:28 -0800 From: Luis Machado To: Subject: [PATCH] Fix uppercase test names in gdb.python/py-xmethods.exp Date: Fri, 20 Jan 2017 08:37:25 -0600 Message-ID: <1484923045-16703-1-git-send-email-lgustavo@codesourcery.com> MIME-Version: 1.0 X-IsSubscribed: yes Some leftover uppercase test names in py-xmethods.exp. The patch also replaces two "continue" calls with untested calls to make things a bit more clear. gdb/testsuite/ChangeLog: 2017-01-20 Luis Machado * gdb.python/py-xmethods.exp: Fix test names starting with lowercase and add untested calls. --- gdb/testsuite/gdb.python/py-xmethods.exp | 44 +++++++++++++++++--------------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/gdb/testsuite/gdb.python/py-xmethods.exp b/gdb/testsuite/gdb.python/py-xmethods.exp index 8f5bf16..38b5998 100644 --- a/gdb/testsuite/gdb.python/py-xmethods.exp +++ b/gdb/testsuite/gdb.python/py-xmethods.exp @@ -18,7 +18,9 @@ load_lib gdb-python.exp -if { [skip_cplus_tests] } { continue } +if { [skip_cplus_tests] } { + untested "skipping C++ tests" +} standard_testfile py-xmethods.cc @@ -27,7 +29,9 @@ if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} { } # Skip all tests if Python scripting is not enabled. -if { [skip_python_tests] } { continue } +if { [skip_python_tests] } { + untested "skipping Python tests" +} if ![runto_main] { return -1 @@ -54,7 +58,7 @@ gdb_test "p a_geta" ".* = 1" "before: a_geta 1" gdb_test "p ++a1" "No symbol.*" "before: ++a1" gdb_test "p a1.getarrayind(5)" "Couldn't find method.*" \ - "Before: a1.getarrayind(5)" + "before: a1.getarrayind(5)" gdb_test "p a_ptr->geta()" ".* = 60" "before: a_ptr->geta()" gdb_test "p b_geta" ".* = 1" "before: b_geta 1" @@ -68,19 +72,19 @@ gdb_test "p g.size_diff()" ".*" "before: call g.size_diff()" gdb_test "p g_size_diff" ".* = 2" "before: g_size_diff 2" gdb_test "p g.size_diff()" "Couldn't find method.*" \ - "Before: g.size_diff()" + "before: g.size_diff()" gdb_test "p g.size_mul<2>()" ".*" "before: g.size_mul<2>()" gdb_test "p g_size_mul" ".* = 2" "before: g_size_mul 2" gdb_test "p g.size_mul<5>()" "Couldn't find method.*" \ - "Before: g.size_mul<5>()" + "before: g.size_mul<5>()" gdb_test "p g.mul(2.0)" ".* = 10" "before: g.mul(2.0)" gdb_test "p g_mul" ".* = 2" "before: g_mul 2" gdb_test "p g.mul('a')" "Couldn't find method.*" \ - "Before: g.mul('a')" + "before: g.mul('a')" # Load the script which adds the debug methods. gdb_test_no_output "source ${xmethods_script}" "load the script file" @@ -99,7 +103,7 @@ gdb_test "p a_minus_a" ".* = 4" "after: a_minus_a 4" gdb_test "p a1.geta()" "From Python .*5" "after: a1.geta()" gdb_test "p ++a1" "From Python .*6" "after: ++a1" gdb_test "p a1.getarrayind(5)" "From Python .*5" \ - "After: a1.getarrayind(5)" + "after: a1.getarrayind(5)" gdb_test "P a1\[6\]" ".*int &.*6" "after a1\[\]" gdb_test "P b1\[7\]" ".*const int &.*7" "after b1\[\]" # Note the following test. Xmethods on dynamc types are not looked up @@ -110,40 +114,40 @@ gdb_test "p e.geta()" "From Python .*100" "after: e.geta()" gdb_test "p e_ptr->geta()" "From Python .*100" "after: e_ptr->geta()" gdb_test "p e_ref.geta()" "From Python .*100" "after: e_ref.geta()" gdb_test "p e.method(10)" "From Python .* = void" \ - "After: e.method(10)" + "after: e.method(10)" gdb_test "p e.method('a')" "From Python .* = void" \ - "After: e.method('a')" + "after: e.method('a')" gdb_test "p g.size_diff ()" "From Python G<>::size_diff.*" \ - "After: g.size_diff()" + "after: g.size_diff()" gdb_test "p g.size_diff< unsigned long >()" "From Python G<>::size_diff.*" \ - "After: g.size_diff()" + "after: g.size_diff()" gdb_test "p g.size_mul<2>()" "From Python G<>::size_mul.*" \ - "After: g.size_mul<2>()" + "after: g.size_mul<2>()" gdb_test "p g.size_mul< 5 >()" "From Python G<>::size_mul.*" \ - "After: g.size_mul< 5 >()" + "after: g.size_mul< 5 >()" gdb_test "p g.mul(2.0)" "From Python G<>::mul.*" \ - "After: g.mul(2.0)" + "after: g.mul(2.0)" gdb_test "p g.mul('a')" "From Python G<>::mul.*" \ gdb_test "p g_ptr->mul('a')" "From Python G<>::mul.*" \ "after: g_ptr->mul('a')" # Tests for 'disable/enable xmethod' command. gdb_test_no_output "disable xmethod progspace G_methods" \ - "Disable G_methods" + "disable G_methods" gdb_test "p g.mul('a')" "Couldn't find method.*" \ "g.mul('a') after disabling G_methods" gdb_test_no_output "enable xmethod progspace G_methods" \ - "Enable G_methods" + "dnable G_methods" gdb_test "p g.mul('a')" "From Python G<>::mul.*" \ - "After enabling G_methods" + "after enabling G_methods" gdb_test_no_output "disable xmethod progspace G_methods;mul" \ - "Disable G_methods;mul" + "disable G_methods;mul" gdb_test "p g.mul('a')" "Couldn't find method.*" \ "g.mul('a') after disabling G_methods;mul" gdb_test_no_output "enable xmethod progspace G_methods;mul" \ - "Enable G_methods;mul" + "enable G_methods;mul" gdb_test "p g.mul('a')" "From Python G<>::mul.*" \ - "After enabling G_methods;mul" + "after enabling G_methods;mul" # Test for 'info xmethods' command gdb_test "info xmethod global plus" "global.*plus_plus_A" \