From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 55558 invoked by alias); 31 Aug 2018 19:28:29 -0000 Mailing-List: contact gdb-testers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-testers-owner@sourceware.org Received: (qmail 55536 invoked by uid 89); 31 Aug 2018 19:28:28 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: kwanyin.sergiodj.net Received: from kwanyin.sergiodj.net (HELO kwanyin.sergiodj.net) (158.69.185.54) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 31 Aug 2018 19:28:27 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb/gdb-8.2-branch] Fix a small bug in gdb.rust/simple.rs From: sergiodj+buildbot@sergiodj.net To: gdb-testers@sourceware.org Message-Id: <7b93bc4c624821352ce32734c89589102eaded87@gdb-build> Date: Sat, 01 Sep 2018 03:42:00 -0000 X-SW-Source: 2018-q3/txt/msg05657.txt.bz2 *** TEST RESULTS FOR COMMIT 7b93bc4c624821352ce32734c89589102eaded87 *** Author: Tom Tromey Branch: gdb-8.2-branch Commit: 7b93bc4c624821352ce32734c89589102eaded87 Fix a small bug in gdb.rust/simple.rs I noticed that gdb.rust/simple.rs had two local variables named "v". This didn't previous cause problems, but with a newer rust compiler this resulted in a test failure. (It should have failed all along, so I suppose earlier passes were due to a compiler bug.) This patch renames the second variable. 2018-08-31 Tom Tromey * gdb.rust/simple.rs: Rename second variable "v".