From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7877) id 9234F3856DC3; Wed, 12 Oct 2022 02:46:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9234F3856DC3 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1665542763; bh=sKw+6d1xqvXIoMtV9Kh2dCKr8sHuhR5fnh9pTdiutX4=; h=From:To:Subject:Date:From; b=UtAk4qlMvBhK1kb5mJNJ2awetEaoypOil3fMiVp45Hu7R3ts02OYplGzBx4xANGpR MgfBvKMAiG2vmX5XW8lePQFbwVMJF4r3KTlQzwbK9Zymo3njICWC3a36YOMa0Gx7nR Ma6W6u0uREFDswrkM3F+wbWAs1NzNeKndE2oHjzo= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: LuluCheng To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-3241] Libvtv-test: Fix bug that scansarif.exp cannot be found in libvtv regression test. X-Act-Checkin: gcc X-Git-Author: Lulu Cheng X-Git-Refname: refs/heads/master X-Git-Oldrev: ab332cd78d083edb2fddaa3c02578cafade12725 X-Git-Newrev: 9d9e793b6543745a5a3aae9032478c056f167c9c Message-Id: <20221012024603.9234F3856DC3@sourceware.org> Date: Wed, 12 Oct 2022 02:46:03 +0000 (GMT) List-Id: https://gcc.gnu.org/g:9d9e793b6543745a5a3aae9032478c056f167c9c commit r13-3241-g9d9e793b6543745a5a3aae9032478c056f167c9c Author: Lulu Cheng Date: Tue Sep 27 10:47:06 2022 +0800 Libvtv-test: Fix bug that scansarif.exp cannot be found in libvtv regression test. SARIF support was added in r13-967 but libvtv wasn't updated. libvtv/ChangeLog: * testsuite/lib/libvtv-dg.exp: Add load_gcc_lib of scansarif.exp. Diff: --- libvtv/testsuite/lib/libvtv-dg.exp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libvtv/testsuite/lib/libvtv-dg.exp b/libvtv/testsuite/lib/libvtv-dg.exp index b140c194cdc..454d916e556 100644 --- a/libvtv/testsuite/lib/libvtv-dg.exp +++ b/libvtv/testsuite/lib/libvtv-dg.exp @@ -12,6 +12,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +load_gcc_lib scansarif.exp + proc libvtv-dg-test { prog do_what extra_tool_flags } { return [gcc-dg-test-1 libvtv_target_compile $prog $do_what $extra_tool_flags] }