From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id 3A0D73858C39; Fri, 13 Jan 2023 20:38:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3A0D73858C39 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1673642315; bh=2yaw5yvRkBbIQ7zfvrIf5msiOR7+H+6iFQZPMWj1adA=; h=From:To:Subject:Date:From; b=GfEjsMfu0sumJlPJagY2+yZR8Mp//FyIOcGdnZuv8lcY+S14TcbhfWaFS2jqJeDMT ipaY2cACAaf3J/Xds+RTFrNrbaGUtXhrBuhttwlnoSfaVSN1Ur8UuanG7SdhAam4TO zyQWUYfmgMpCumjPVtehkgYpUr7SL769ITzT8Zd4= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tom Tromey To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Rename to allow_btrace_pt_tests X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: 6d1df4502357ff7b716e2a34ec614a2a7617d894 X-Git-Newrev: d1821835860e1f11e17ac5de5109d225a736cda0 Message-Id: <20230113203835.3A0D73858C39@sourceware.org> Date: Fri, 13 Jan 2023 20:38:35 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Dd1821835860e= 1f11e17ac5de5109d225a736cda0 commit d1821835860e1f11e17ac5de5109d225a736cda0 Author: Tom Tromey Date: Sun Jan 8 10:41:37 2023 -0700 Rename to allow_btrace_pt_tests =20 This changes skip_btrace_pt_tests to invert the sense, and renames it to allow_btrace_pt_tests. Diff: --- gdb/testsuite/gdb.btrace/tsx.exp | 2 +- gdb/testsuite/lib/gdb.exp | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/gdb/testsuite/gdb.btrace/tsx.exp b/gdb/testsuite/gdb.btrace/ts= x.exp index 2a8d29de8ed..222c352c368 100644 --- a/gdb/testsuite/gdb.btrace/tsx.exp +++ b/gdb/testsuite/gdb.btrace/tsx.exp @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . =20 -require !skip_btrace_pt_tests !skip_tsx_tests +require allow_btrace_pt_tests !skip_tsx_tests =20 standard_testfile .c x86-tsx.S if [prepare_for_testing "failed to prepare" $testfile "$srcfile $srcfile2"= {debug}] { diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 4959af6b2c4..8d817dfa682 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -3852,22 +3852,22 @@ gdb_caching_proc skip_btrace_tests { } =20 # Run a test on the target to see if it supports btrace pt hardware. -# Return 0 if so, 1 if it does not. Based on 'check_vmx_hw_available' +# Return 1 if so, 0 if it does not. Based on 'check_vmx_hw_available' # from the GCC testsuite. =20 -gdb_caching_proc skip_btrace_pt_tests { +gdb_caching_proc allow_btrace_pt_tests { global srcdir subdir gdb_prompt inferior_exited_re =20 - set me "skip_btrace_tests" + set me "allow_btrace_pt_tests" if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } { - verbose "$me: target does not support btrace, returning 1" 2 - return 1 + verbose "$me: target does not support btrace, returning 1" 2 + return 0 } =20 # Compile a test program. set src { int main() { return 0; } } if {![gdb_simple_compile $me $src executable]} { - return 1 + return 0 } =20 # No error message, compilation succeeded so now run it via gdb. @@ -3877,32 +3877,32 @@ gdb_caching_proc skip_btrace_pt_tests { gdb_reinitialize_dir $srcdir/$subdir gdb_load $obj if ![runto_main] { - return 1 + return 0 } # In case of an unexpected output, we return 2 as a fail value. - set skip_btrace_tests 2 + set allow_btrace_pt_tests 2 gdb_test_multiple "record btrace pt" "check btrace pt support" { -re "You can't do that when your target is.*\r\n$gdb_prompt $" { - set skip_btrace_tests 1 + set allow_btrace_pt_tests 0 } -re "Target does not support branch tracing.*\r\n$gdb_prompt $" { - set skip_btrace_tests 1 + set allow_btrace_pt_tests 0 } -re "Could not enable branch tracing.*\r\n$gdb_prompt $" { - set skip_btrace_tests 1 + set allow_btrace_pt_tests 0 } -re "support was disabled at compile time.*\r\n$gdb_prompt $" { - set skip_btrace_tests 1 + set allow_btrace_pt_tests 0 } -re "^record btrace pt\r\n$gdb_prompt $" { - set skip_btrace_tests 0 + set allow_btrace_pt_tests 1 } } gdb_exit remote_file build delete $obj =20 - verbose "$me: returning $skip_btrace_tests" 2 - return $skip_btrace_tests + verbose "$me: returning $allow_btrace_pt_tests" 2 + return $allow_btrace_pt_tests } =20 # Run a test on the target to see if it supports Aarch64 SVE hardware.