From patchwork Tue Jul 3 17:24:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Martin_Li=C5=A1ka?= X-Patchwork-Id: 938842 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-480944-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="L35q3QAU"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41KrcL0444z9s2g for ; Wed, 4 Jul 2018 03:25:37 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:message-id:date:mime-version:content-type; q=dns; s= default; b=aMWwIxyqq8YEEATFfAgbT6aNGV9THZ9ixMLVIIkrTF1lq/lyNwf9P b66GzBjT4Pvf3bQyX/UQTzIsXuQFSPbTJDoCYjYjZSBeGVifG81fGvltvpyujhnW cZsdBmNJyp/Ekf8hWOxFlmGgAQw4G6z2vqDgwfbrWUCy2IjcY5JEME= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:message-id:date:mime-version:content-type; s= default; bh=pBgajvnBl0Ncjz7vmbIFGHVeMv4=; b=L35q3QAUB87sYMDxh+De XwRWvBGmCdlhu3n2PISQzExUfdOsDRMJfRY1xFhOgtEREPXxcu2mCowTqV8CWkjI 8qY/gi2tat1WMqRUOp/9YsXOvWf/MMfKnI0UDbRvO69O5vWkyU72x11GVa8/P/I9 6laeJVk2EXXjvmYtLhvMDsI= Received: (qmail 94431 invoked by alias); 3 Jul 2018 17:25:27 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 88862 invoked by uid 89); 3 Jul 2018 17:24:23 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 03 Jul 2018 17:24:22 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 12639AC98 for ; Tue, 3 Jul 2018 17:24:18 +0000 (UTC) From: =?utf-8?q?Martin_Li=C5=A1ka?= Subject: [PATCH] Remove legacy testcase for -fprofile-generate=./ To: gcc-patches@gcc.gnu.org Message-ID: Date: Tue, 3 Jul 2018 19:24:17 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 X-IsSubscribed: yes Hi. As new option mangles absolute path of a compiled file, it's hard to come up with a scan-file pattern. Note similar test is done in gcc.dg/profile-dir-*.c that I adjusted few days ago. Ready for trunk? Thanks, Martin gcc/testsuite/ChangeLog: 2018-07-03 Martin Liska * gcc.dg/pr47793.c: Remove. --- gcc/testsuite/gcc.dg/pr47793.c | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 gcc/testsuite/gcc.dg/pr47793.c diff --git a/gcc/testsuite/gcc.dg/pr47793.c b/gcc/testsuite/gcc.dg/pr47793.c deleted file mode 100644 index 0ee1aaee421..00000000000 --- a/gcc/testsuite/gcc.dg/pr47793.c +++ /dev/null @@ -1,13 +0,0 @@ -/* Bug pr47793: Allow relative paths in profile-generate. */ -/* { dg-do run } */ -/* { dg-options "-O -fprofile-generate=./" } */ -/* { dg-require-profiling "-fprofile-generate" } */ -/* { dg-final { scan-file pr47793.gcda "."} } */ - -int -main(void) -{ - return 0; -} - -/* { dg-final { cleanup-coverage-files } } */