From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 114895 invoked by alias); 16 Jan 2018 17:45:35 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 114703 invoked by uid 89); 16 Jan 2018 17:45:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mail-qt0-f177.google.com Received: from mail-qt0-f177.google.com (HELO mail-qt0-f177.google.com) (209.85.216.177) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Jan 2018 17:45:20 +0000 Received: by mail-qt0-f177.google.com with SMTP id d54so7175915qtd.4 for ; Tue, 16 Jan 2018 09:45:09 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-transfer-encoding; bh=dxeuYkPfrrlnpaLahfz9GrmoxvquZVjXwlcE6z3xXHE=; b=oj9cZBEwAdy+1XYP2WxTBtt4iVtoVxohMxp2OOolvuMmJc4wBEHribV9veaDoY4q1z EqpxkviiZbOvlrG4M2Pqni62HABTV8u6EcD50URj/UgIGYPD8kpbkpTZ7v9z7bP/PraV EUO47pIjfO3sSRhH7G6oJ26LoCWwWbUogmI/PisYpoac50BwUa7IiJkNCenNU9JKJ5e9 +cG2Mpgs3O5AD4Pg5NUe8zuhtOTDA3woGRyOglhZgObFm7jik81DEOOGH7+EicaoMwWv l9K2kl+Vz6KIv6PM+eeRufC6p4WDs6uHK6ZhvETUafogHvozv1OtyBtEOc2XHIij0hze 4tXw== X-Gm-Message-State: AKwxytfX5G8Q1BUiJLoeoeUQXiPKdAH1DXgnt+79D2Ew72nFtHwV4c4C lBeum77fq4ZK9MfRtcfwcbrDNafuNEQtJQhDz2uetA== X-Google-Smtp-Source: ACJfBouv8taxVSqd9/9PXIBKD1Qr5EsrsAp5Rb9qFSIHfnpt1YwfijNQgsl2TfQVSvYFn38YnQZHPE9YL9XoZVXukTY= X-Received: by 10.237.52.7 with SMTP id w7mr19708623qtd.24.1516124708179; Tue, 16 Jan 2018 09:45:08 -0800 (PST) MIME-Version: 1.0 Received: by 10.12.152.176 with HTTP; Tue, 16 Jan 2018 09:45:07 -0800 (PST) In-Reply-To: References: <1516103412-25086-1-git-send-email-yao.qi@linaro.org> <088c44b5-5454-e187-3984-956a30904ffc@redhat.com> <86k1whg7iy.fsf@gmail.com> From: Yao Qi Date: Tue, 16 Jan 2018 17:45:00 -0000 Message-ID: Subject: Re: [PATCH] Run gdb.compile/*.exp on {x86,x86_64,s390}-linux only To: Pedro Alves Cc: GDB Patches , Jan Kratochvil , Phil Muldoon Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2018-01/txt/msg00311.txt.bz2 On Tue, Jan 16, 2018 at 5:20 PM, Pedro Alves wrote: > > Yes, I could reproduce this by hacking default_gcc_target_options > to return "" like you were doing: > > Passing 15 compiler options: > Compiler option 0: <> <<<<<< BAD > Compiler option 1: <-mtune=3Dgeneric> > Compiler option 2: <-march=3Dx86-64> > ... > > Making default_gcc_target_options return NULL instead works: > > Passing 14 compiler options: > Compiler option 0: <-mtune=3Dgeneric> > Compiler option 1: <-march=3Dx86-64> > ... > Right, I can run gdb.compile/*.exp tests now on aarch64-linux, # of expected passes 143 # of unexpected failures 10 # of known failures 2 # of untested testcases 2 --=20 Yao (=E9=BD=90=E5=B0=A7)