From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14909 invoked by alias); 16 Feb 2015 14:41:46 -0000 Mailing-List: contact archer-commits-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: Received: (qmail 14888 invoked by uid 9674); 16 Feb 2015 14:41:45 -0000 Date: Mon, 16 Feb 2015 14:41:00 -0000 Message-ID: <20150216144145.14861.qmail@sourceware.org> From: jkratoch@sourceware.org To: archer-commits@sourceware.org Subject: [SCM] tromey/python: py-value.exp: Fix Python3 incompatibilities. X-Git-Refname: refs/heads/tromey/python X-Git-Reftype: branch X-Git-Oldrev: 89a19af106857845ac47c2e400f71631c36641e5 X-Git-Newrev: d1a09bf2f8e7e3f752a1bbeba135bc080bf0c865 X-SW-Source: 2015-q1/txt/msg00006.txt.bz2 List-Id: The branch, tromey/python has been updated via d1a09bf2f8e7e3f752a1bbeba135bc080bf0c865 (commit) from 89a19af106857845ac47c2e400f71631c36641e5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- commit d1a09bf2f8e7e3f752a1bbeba135bc080bf0c865 Author: Jan Kratochvil Date: Mon Feb 16 15:41:28 2015 +0100 py-value.exp: Fix Python3 incompatibilities. ----------------------------------------------------------------------- Summary of changes: gdb/testsuite/gdb.python/py-value.exp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) First 500 lines of diff: diff --git a/gdb/testsuite/gdb.python/py-value.exp b/gdb/testsuite/gdb.python/py-value.exp index 31b5910..58cce09 100644 --- a/gdb/testsuite/gdb.python/py-value.exp +++ b/gdb/testsuite/gdb.python/py-value.exp @@ -394,7 +394,7 @@ proc test_value_after_death {} { proc test_cast_regression {} { gdb_test "python v = gdb.Value(5)" "" "create value for cast test" gdb_test "python v = v.cast(v.type)" "" "cast value for cast test" - gdb_test "python print v" "5" "print value for cast test" + gdb_test "python print(v)" "5" "print value for cast test" } # Regression test for invalid subscript operations. The bug was that hooks/post-receive -- Repository for Project Archer.