From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4607 invoked by alias); 15 Feb 2018 18:47:38 -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 4585 invoked by uid 89); 15 Feb 2018 18:47:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-Spam-User: qpsmtpd, 2 recipients X-HELO: cc-smtpout1.netcologne.de Received: from cc-smtpout1.netcologne.de (HELO cc-smtpout1.netcologne.de) (89.1.8.211) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 15 Feb 2018 18:47:36 +0000 Received: from cc-smtpin2.netcologne.de (cc-smtpin2.netcologne.de [89.1.8.202]) by cc-smtpout1.netcologne.de (Postfix) with ESMTP id 7CA0A1338B; Thu, 15 Feb 2018 19:47:33 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by cc-smtpin2.netcologne.de (Postfix) with ESMTP id 78A3011DA6; Thu, 15 Feb 2018 19:47:33 +0100 (CET) Received: from [78.35.153.101] (helo=cc-smtpin2.netcologne.de) by localhost with ESMTP (eXpurgate 4.1.9) (envelope-from ) id 5a85d5c5-02b8-7f0000012729-7f000001a224-1 for ; Thu, 15 Feb 2018 19:47:33 +0100 Received: from [192.168.178.20] (xdsl-78-35-153-101.netcologne.de [78.35.153.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by cc-smtpin2.netcologne.de (Postfix) with ESMTPSA; Thu, 15 Feb 2018 19:47:32 +0100 (CET) To: "fortran@gcc.gnu.org" , gcc-patches From: Thomas Koenig Subject: [fortran, test case, committed] Message-ID: <455aa21c-2ba6-6321-ab6e-669020b4e7b4@netcologne.de> Date: Thu, 15 Feb 2018 18:47:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------DF586AC245376376F5E4E0B5" X-SW-Source: 2018-02/txt/msg00918.txt.bz2 This is a multi-part message in MIME format. --------------DF586AC245376376F5E4E0B5 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-length: 354 Hi, I just committed the test case below as obvious, after testing. Just to make sure that, when we convert all test cases from CALL ABORT to "STOP 1" (or whatever), we actually get a failure when we have a regression. Regards Thomas 2018-02-15 Thomas Koenig PR fortran/84381 * gfortran.dg/stop_shouldfail.f90: New test. --------------DF586AC245376376F5E4E0B5 Content-Type: text/x-fortran; name="stop_shouldfail.f90" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="stop_shouldfail.f90" Content-length: 85 ! { dg-do run } ! { dg-shouldfail "STOP 1" } program main stop 1 end program main --------------DF586AC245376376F5E4E0B5--