From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15285 invoked by alias); 14 Jun 2017 19:26:54 -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 15271 invoked by uid 89); 14 Jun 2017 19:26:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mail-vk0-f48.google.com Received: from mail-vk0-f48.google.com (HELO mail-vk0-f48.google.com) (209.85.213.48) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 14 Jun 2017 19:26:52 +0000 Received: by mail-vk0-f48.google.com with SMTP id y70so6288208vky.3 for ; Wed, 14 Jun 2017 12:26:56 -0700 (PDT) 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; bh=PtR6RHG8IWM7XYPbKh01+u0dvhaXHcYJsqRC2fhzZsE=; b=ksGzVK5ABLkGEUVEuupDs8wmo6BEJMhBvS78eRqZsC4rHQSrMZIgngmJe871UwzMvm XefhvtyQFrQbHMJAB9ZWJ/stTW+hGoYfNcK+k8vicwjnx8Cj2LIU6BKrnQY2Ik+Z4A2A 0QET+BmjCxhFYIYQBLp+KaF6zPqlG8ETLj8XiI0YcXJ4b+P6YaXLRzJAKvtBPeqi331K pO0VYjmD+SKlhhJM36zyzr0dFHCVgu3PrYmFqObPqe/ReCPkElkkSoCZFP4q5B0dLR9g 9BioIQgfPRZvwShfUy5wwiCnaRbNfJHUEy3mViA4GkzTHbLFvo2ZITdPnV0MRlFd7a+X Y2CA== X-Gm-Message-State: AKS2vOxqXSu2eoEStPt8RaEO4/7jdEbLuQDFetFc9+tfRsN7X9nXLlFw QNhBqlE+yLAiliXHpsAYF7kUXPgLhOba/uHfqg== X-Received: by 10.31.128.11 with SMTP id b11mr994995vkd.93.1497468414719; Wed, 14 Jun 2017 12:26:54 -0700 (PDT) MIME-Version: 1.0 Received: by 10.103.50.131 with HTTP; Wed, 14 Jun 2017 12:26:54 -0700 (PDT) In-Reply-To: <9fb10c50-8b5d-89a1-a246-aefcafd472ee@arm.com> References: <6fe51cd3-dd38-d09a-d053-db02e1d7bad2@arm.com> <9fb10c50-8b5d-89a1-a246-aefcafd472ee@arm.com> From: Christophe Lyon Date: Wed, 14 Jun 2017 19:26:00 -0000 Message-ID: Subject: Re: [PATCH 32/30][arm][testsuite] Fix various tests To: "Richard Earnshaw (lists)" Cc: "gcc-patches@gcc.gnu.org" Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2017-06/txt/msg01081.txt.bz2 On 14 June 2017 at 16:27, Richard Earnshaw (lists) wrote: > On 13/06/17 18:29, Richard Earnshaw (lists) wrote: >> This test was overriding the options that had been detected as being >> necessary to enable Neon. The result was that the combination of the >> test's options and those auto-detected were not compatible with neon >> leading to a test failure. The correct fix here is to stick with the >> options that dg-add-options arm_neon has worked out. >> >> * gcc.target/arm/neon-thumb2-move.c (dg-options): Don't override >> the architecture options added by dg-add-options arm_neon. >> >> > > The thumb2-slow-flash-data tests were relying (incorrectly) on a > particular FPU being enabled by default. These tests are fixed by > adding +fp to the architecture selected. > > * gcc.target/arm/neon-thumb2-move.c (dg-options): Don't override > the architecture options added by dg-add-options arm_neon. > * gcc.target/arm/thumb2-slow-flash-data-2.c (dg-opitions): Add +fp > to the architecture. > * gcc.target/arm/thumb3-slow-flash-data-3.c (dg-opitions): Likewise. > * gcc.target/arm/thumb4-slow-flash-data-3.c (dg-opitions): Likewise. > * gcc.target/arm/thumb5-slow-flash-data-3.c (dg-opitions): Likewise. > I confirm they now pass on my side: http://people.linaro.org/~christophe.lyon/cross-validation/gcc-test-patches/248942-roll-up.patch2/report-build-info.html > > R.