From patchwork Tue Feb 12 16:10:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Burgess X-Patchwork-Id: 31410 Received: (qmail 66475 invoked by alias); 12 Feb 2019 16:11:11 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 66419 invoked by uid 89); 12 Feb 2019 16:11:11 -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, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mail-wr1-f46.google.com Received: from mail-wr1-f46.google.com (HELO mail-wr1-f46.google.com) (209.85.221.46) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 12 Feb 2019 16:11:10 +0000 Received: by mail-wr1-f46.google.com with SMTP id v13so3308802wrw.5 for ; Tue, 12 Feb 2019 08:11:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=k/a4poxFOkUKWYZcfjMAMpmD0qKicMf9CiVZndYdIw4=; b=cZo8BXLOZTqJU7ArWpgvGrMwypP21cE8CUWNGLVKCxg8gYfjNlP9gXO9WyAfPmhpfV XLNJ3x4xsEPg2hQxBVOe8vmiCLtxbxoOXElOzZdvbjsneMkfr6eVYeKWcU6zKHXrrG/k xmw29LBu63NqxDffJYWYYc5u4XKlJPgkutETAIOgHI+xRwxTsQZosXquAySbixAx8ayU j/PhC2suMuuKMXmBLWqz8B0Pj6rjsaVVdebKFrsoFXBGBQoYkoDdFfFb+bmAnKpvHnpZ U2eZKKs22MO/d+2OHN6o1zaLiclJK3cIBBOW4XZxQ9VosniInPjj3n1GJBoQeciN9F9y n/xg== Return-Path: Received: from localhost (host81-151-161-9.range81-151.btcentralplus.com. [81.151.161.9]) by smtp.gmail.com with ESMTPSA id d16sm8184wrx.29.2019.02.12.08.11.06 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 12 Feb 2019 08:11:06 -0800 (PST) From: Andrew Burgess To: gdb-patches@sourceware.org Cc: Richard Bunt , Andrew Burgess Subject: [PATCH 01/11] gdb/fortran: Remove some duplicate tests Date: Tue, 12 Feb 2019 16:10:52 +0000 Message-Id: <3f41f7b59112c3d25c5a8a48422c62b3c5892bf6.1549986233.git.andrew.burgess@embecosm.com> In-Reply-To: References: In-Reply-To: References: X-IsSubscribed: yes Make the test names unique in gdb.fortran/types.exp by removing a few duplicate tests. gdb/testsuite/ChangeLog: * gdb.fortran/types.exp (test_float_literal_types_accepted): Remove duplicate tests. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.fortran/types.exp | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/gdb/testsuite/gdb.fortran/types.exp b/gdb/testsuite/gdb.fortran/types.exp index 2e1f2e1efd1..f786bd30eb0 100644 --- a/gdb/testsuite/gdb.fortran/types.exp +++ b/gdb/testsuite/gdb.fortran/types.exp @@ -63,12 +63,8 @@ proc test_float_literal_types_accepted {} { gdb_test "pt .44" "type = real\\*\[0-9\]+" gdb_test "pt 44.0" "type = real\\*\[0-9\]+" gdb_test "pt 10D20" "type = real\\*\[0-9\]+" - gdb_test "pt 10D20" "type = real\\*\[0-9\]+" - gdb_test "pt 10d20" "type = real\\*\[0-9\]+" gdb_test "pt 10d20" "type = real\\*\[0-9\]+" gdb_test "pt 10E20" "type = real\\*\[0-9\]+" - gdb_test "pt 10E20" "type = real\\*\[0-9\]+" - gdb_test "pt 10e20" "type = real\\*\[0-9\]+" gdb_test "pt 10e20" "type = real\\*\[0-9\]+" }