From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by sourceware.org (Postfix) with ESMTP id 19F6A384B104 for ; Mon, 20 Apr 2020 14:52:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 19F6A384B104 Received: from mail-ej1-f71.google.com (mail-ej1-f71.google.com [209.85.218.71]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-21-gJ6IDQinPtOqyHsEPMJ4Wg-1; Mon, 20 Apr 2020 10:52:28 -0400 X-MC-Unique: gJ6IDQinPtOqyHsEPMJ4Wg-1 Received: by mail-ej1-f71.google.com with SMTP id dx16so6421448ejb.10 for ; Mon, 20 Apr 2020 07:52:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=s7RLzTlqrbGJ110hEU8RZH57xv9M1K3HK9gsCqEyX1M=; b=QMzfjl8bUpHY2kVJulsTocNnjJjl9st+8VH/+ei/r6XMW+AW9ctc6g1JFwn5NQrH2H iInVgB0Pthh/+GSL2zTNWLRKLq/+q/F/hgK8hy6uPpkUV6d0mtC7xBxD5RaMHa1QKArp rIrUJNyR48kNrAFvyRCgO5OMRf1HbzcJgFF+uUK296pVq8koNCSn5JKb+APbcKYSqHAE y1elw2PWv8M7IwGjADE7Oo3RavlXTX8qc2Qo17gXpqnJsvEUTai0ISjchsA4Jna8bo90 wat8LiwgOrKYMgReeomHbKLJohuQVzRMrHlYQnpDsgygu27rUK8K0o4cs8/IpkQRDyFj HqEQ== X-Gm-Message-State: AGi0PuYHrvGSjNYUHve2chsVjrPtOO7Ri1xbPoyTqRm/i1J6x5QhY3cK gC7ihLWN/LYJY8Hs8b+d7xYnqtpHEXN3goyY4hfHTRlgYYeV48pogfKI8zvV46Ihr4MnuNUQ1kb 1THatLGSCrW0I8MwSD6K/oA== X-Received: by 2002:a05:6402:1c8b:: with SMTP id cy11mr15236583edb.102.1587394346817; Mon, 20 Apr 2020 07:52:26 -0700 (PDT) X-Google-Smtp-Source: APiQypKDPGYHQGP9SeDeneHXyWlMMTCGvifWu81obm0YhZtNv6vKdhW6HsYLuKMr/5Ua9VY/cXAfNw== X-Received: by 2002:a05:6402:1c8b:: with SMTP id cy11mr15236562edb.102.1587394346581; Mon, 20 Apr 2020 07:52:26 -0700 (PDT) Received: from ?IPv6:2001:8a0:f909:7b00:56ee:75ff:fe8d:232b? ([2001:8a0:f909:7b00:56ee:75ff:fe8d:232b]) by smtp.gmail.com with ESMTPSA id d20sm97795edj.17.2020.04.20.07.52.25 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 20 Apr 2020 07:52:26 -0700 (PDT) Subject: Re: [OB PATCH] Disable nested function tests for clang To: Gary Benson , gdb-patches@sourceware.org References: <1587394189-13374-1-git-send-email-gbenson@redhat.com> From: Pedro Alves Message-ID: Date: Mon, 20 Apr 2020 15:52:24 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 In-Reply-To: <1587394189-13374-1-git-send-email-gbenson@redhat.com> Content-Language: en-US X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-9.7 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Apr 2020 14:52:31 -0000 On 4/20/20 3:49 PM, Gary Benson via Gdb-patches wrote: > Clang does not support nested functions, and there are no plans to > change this. This commit disables the three nested function tests > when using clang. > > gdb/testsuite/ChangeLog: > > * gdb.base/nested-subp1.exp: Disable test when using clang. > * gdb.base/nested-subp2.exp: Likewise. > * gdb.base/nested-subp3.exp: Likewise. Please use the support_nested_function_tests procedure instead. Thanks, Pedro Alves