From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 65139 invoked by alias); 4 Dec 2018 12:59:40 -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 65128 invoked by uid 89); 4 Dec 2018 12:59:39 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:955 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 04 Dec 2018 12:59:38 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 70A974E92B; Tue, 4 Dec 2018 12:59:37 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-117-214.ams2.redhat.com [10.36.117.214]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 030598273F; Tue, 4 Dec 2018 12:59:36 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id wB4CxYBX024514; Tue, 4 Dec 2018 13:59:35 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id wB4CxXDj024513; Tue, 4 Dec 2018 13:59:33 +0100 Date: Tue, 04 Dec 2018 12:59:00 -0000 From: Jakub Jelinek To: Cesar Philippidis , Thomas Schwinge Cc: "gcc-patches@gcc.gnu.org" , Tom de Vries Subject: Re: [patch] various OpenACC reduction enhancements - test cases Message-ID: <20181204125933.GM12380@tucnak> Reply-To: Jakub Jelinek References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.2 (2017-12-15) X-IsSubscribed: yes X-SW-Source: 2018-12/txt/msg00168.txt.bz2 On Fri, Jun 29, 2018 at 11:23:21AM -0700, Cesar Philippidis wrote: > Attached are the updated reductions tests cases. Again, these have been > bootstrapped and regression tested cleanly for x86_64 with nvptx > offloading. Is it OK for trunk? If Thomas is ok with this, it is ok for trunk. > 2018-06-29 Cesar Philippidis > Nathan Sidwell > > gcc/testsuite/ > * c-c++-common/goacc/orphan-reductions-1.c: New test. > * c-c++-common/goacc/reduction-7.c: New test. > * c-c++-common/goacc/routine-4.c: Update. > * g++.dg/goacc/reductions-1.C: New test. > * gcc.dg/goacc/loop-processing-1.c: Update. > * gfortran.dg/goacc/orphan-reductions-1.f90: New test. > > libgomp/ > * libgomp.oacc-c-c++-common/par-reduction-3.c: New test. > * libgomp.oacc-c-c++-common/reduction-cplx-flt-2.c: New test. > * libgomp.oacc-fortran/reduction-9.f90: New test. Jakub