From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 77786385E45E; Wed, 14 Feb 2024 13:41:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 77786385E45E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1707918118; bh=ZWhZNfV66iBojfhMqCkmsOkOpO/5fdXpxCbUtVjh6C8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=afWuh8Ar2RaXuOphr8E/Pj5pfyIAUpUqj9UQjGGTCS/AzAc5ZX1/f4Mub925ewZZC mQFaN7JEMZaZFvfrwwA9ENRhkZQw7WMaWkSOkHpnZdFT74LjuGcnJUGCxAeE1ChiuO r2V2C+B3wgdQScAGtM7k8ir4uDlbRn+X0Psc1ZsQ= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/113899] Vect module test failures while running on remote host due to default dg-do set to compile and additional-sources being used Date: Wed, 14 Feb 2024 13:41:56 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 13.2.0 X-Bugzilla-Keywords: testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: pinskia at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D113899 --- Comment #4 from GCC Commits --- The trunk branch has been updated by Andrew Pinski : https://gcc.gnu.org/g:948dbc5ee45f9ffd5f41fd6782704081cc7c8c27 commit r14-8978-g948dbc5ee45f9ffd5f41fd6782704081cc7c8c27 Author: Andrew Pinski Date: Tue Feb 13 13:39:16 2024 -0800 vect/testsuite: Fix vect-simd-clone-1[02].c when dg-do default is compi= le [PR113899] The vect testsuite will chose the dg-do default based on if it knows the running target does not support running with the vector extensions enab= led (for easy of testing). The problem is when it is decided the default is compile instead of run, dg-additional-sources does not work. So the fix is to s= et dg-do on these two testcases to run explicitly. Tested on x86_64 with a hack to check_vect_support_and_set_flags to set= the dg-default to compile. gcc/testsuite/ChangeLog: PR testsuite/113899 * gcc.dg/vect/vect-simd-clone-10.c: Add `dg-do run` * gcc.dg/vect/vect-simd-clone-12.c: Likewise. Signed-off-by: Andrew Pinski =