From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53524 invoked by alias); 30 Nov 2015 12:12:12 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 52049 invoked by uid 89); 30 Nov 2015 12:12:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: smtp.fgznet.ch Received: from smtp.fgznet.ch (HELO smtp.fgznet.ch) (157.161.14.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 30 Nov 2015 12:12:10 +0000 Received: from [192.168.225.14] (dhclient-91-190-14-19.flashcable.ch [91.190.14.19]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by fgznet.ch (Postfix) with ESMTPS id 42481C6F7A; Mon, 30 Nov 2015 13:12:07 +0100 (CET) Subject: Re: [patch] c/c++ asan tests for FreeBSD To: Bernd Schmidt , GCC Patches References: <565B52BD.3020405@fgznet.ch> <565C24BE.8020905@redhat.com> From: Andreas Tobler Message-ID: <565C3D16.9020708@fgznet.ch> Date: Mon, 30 Nov 2015 12:12:00 -0000 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <565C24BE.8020905@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-11/txt/msg03471.txt.bz2 On 30.11.15 11:28, Bernd Schmidt wrote: > On 11/29/2015 08:32 PM, Andreas Tobler wrote: >> Hi all, >> >> the attached patch prepares the testsuite, c and c++, for the upcoming >> ASAN support for FreeBSD (x86_64 first). >> >> I tested the patch on CentOS7.1 x86_64 and on FreeBSD x86_64. >> Results can be seen on the list. >> >> Is this ok for trunk? >> >> -/* { dg-do run { target { *-*-linux* } } } */ >> +/* { dg-do run { target { *-*-linux* *-*-freebsd* } } } */ > > I see a patch from you to add asan support to x86 freebsd, but what > about other architectures? You mean because of the wildcard? I'll add them as I have time to port them. For now they are UNSUPPORTED. Does every *-*-linux* has asan support? Andreas