From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 42276 invoked by alias); 12 Oct 2015 21:49:20 -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 42223 invoked by uid 89); 12 Oct 2015 21:49:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-5.9 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 X-HELO: kwanyin.sergiodj.net Received: from kwanyin.sergiodj.net (HELO kwanyin.sergiodj.net) (176.31.208.32) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 12 Oct 2015 21:49:18 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] gdb: Fix bug with dbx style func command. From: sergiodj+buildbot@redhat.com To: gdb-testers@sourceware.org Message-Id: <9d622bda566a4980b045631f500c29717ede8186@gdb-build> Date: Mon, 12 Oct 2015 21:49:00 -0000 X-SW-Source: 2015-q4/txt/msg01213.txt.bz2 *** TEST RESULTS FOR COMMIT 9d622bda566a4980b045631f500c29717ede8186 *** Author: Andrew Burgess Branch: master Commit: 9d622bda566a4980b045631f500c29717ede8186 gdb: Fix bug with dbx style func command. The func command, available when starting gdb in dbx mode, is supposed to take a function name and locate the frame for that function in the stack. This has been broken for a while due to an invalid check of the arguments within the worker function. Fixed in this commit. gdb/ChangeLog: * stack.c (func_command): Return early when there is no ARG string. gdb/testsuite/ChangeLog: * gdb.base/dbx.exp (test_func): Remove xfails, update expected results.