From patchwork Fri Jan 22 00:23:40 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 10512 Received: (qmail 44755 invoked by alias); 22 Jan 2016 00:23:43 -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 44742 invoked by uid 89); 22 Jan 2016 00:23:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=45, 7, Hx-languages-length:855, U*dje, dje@google.com X-HELO: mail-pf0-f201.google.com Received: from mail-pf0-f201.google.com (HELO mail-pf0-f201.google.com) (209.85.192.201) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 22 Jan 2016 00:23:42 +0000 Received: by mail-pf0-f201.google.com with SMTP id 65so5736297pff.1 for ; Thu, 21 Jan 2016 16:23:42 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:message-id:date:subject:from:to :content-type; bh=OoIJvEQdIREIaTlbi7EIOEDjJl7sLbuF65YA+nl2oT8=; b=EuSC92VT7tdWEBU2ggLwScXq7VGrLQz4SM+YDx08GzF5YRwxtBGCdXVYqFv4qchVkT /4O4R9sjQFPL1ivWFYQcxnejTdJv4BKlNU7DirI4T4RB0BNjY8P1Bze21ZhuWlQbtoZ8 GLIyTQTEb+vgF6zBosrdD2Bex+JdH6Hows/afVekvLqTne4nbRvpmM+iuRLJ+7Ukz37R XTOri8np4wcDdEgTbaPH+ZbkeH8cXS0iiDTcDMZxCNOr8e2J2ERK4sNmQex/XZ0DJmJE qIjmbexqQfRrZNVyGX4Xi1YrqJwGg48eD99xF8yWuYWXiYljHJqpuImq6oAhYZmkyzvn 2HQA== X-Gm-Message-State: AG10YOSVCJEuQGvqhPKKaI2qPTvtL2+Hv19G9KY+fXedGNaVBSrnz3ULFS9ypk0rPEwI4Pg/byMMJFODE+USs5rGQlJb4I6X2wJ3V0lcFkn23GRqD7b9tpuSLUPN9X2qqxMVwgQnEcOFtQeW3ICm52JawKbbEaCbdfxUZCVGwzk0vqB/w7KHvA== MIME-Version: 1.0 X-Received: by 10.66.221.39 with SMTP id qb7mr120292pac.23.1453422220388; Thu, 21 Jan 2016 16:23:40 -0800 (PST) Message-ID: <047d7b5d519827f0280529e13b43@google.com> Date: Fri, 22 Jan 2016 00:23:40 +0000 Subject: [OB PATCH] lib/ada.exp (gdb_compile_ada): Fix typo. From: Doug Evans To: gdb-patches@sourceware.org X-IsSubscribed: yes Hi. I noticed all the Ada tests were failing instead of being marked as UNSUPPORTED (I don't have gnat installed). I traced it to this. Committed as obvious. 2016-01-21 Doug Evans * lib/ada.exp (gdb_compile_ada): Fix typo. diff --git a/gdb/testsuite/lib/ada.exp b/gdb/testsuite/lib/ada.exp index 66dfad2..01f3008 100644 --- a/gdb/testsuite/lib/ada.exp +++ b/gdb/testsuite/lib/ada.exp @@ -45,7 +45,7 @@ proc gdb_compile_ada {source dest type options} { append options " additional_flags=-I$srcdir" set result [target_compile_ada_from_dir \ - $objdir [file tail $source] $dest $type $options]] + $objdir [file tail $source] $dest $type $options] # The Ada build always produces some output, even when the build # succeeds. Thus, we can not use the output the same way we do in