From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 81430 invoked by alias); 2 Dec 2016 20:22:50 -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 81369 invoked by uid 89); 2 Dec 2016 20:22:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.6 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy= 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 ESMTP; Fri, 02 Dec 2016 20:22:39 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] Test user-defined gdb commands and arguments stack From: sergiodj+buildbot@sergiodj.net To: gdb-testers@sourceware.org Message-Id: Date: Fri, 02 Dec 2016 20:34:00 -0000 X-SW-Source: 2016-q4/txt/msg04430.txt.bz2 *** TEST RESULTS FOR COMMIT ec835369f121c11d6e9484ed8c6c11097ad545c5 *** Author: Pedro Alves Branch: master Commit: ec835369f121c11d6e9484ed8c6c11097ad545c5 Test user-defined gdb commands and arguments stack We're missing a test that makes sure that arguments to user-defined commands are handled correctly when a user-defined command calls another user-defined command / recurses. The following patch changes that code, so add such a test first so we can be confident won't be breaking this use case. gdb/testsuite/ChangeLog: 2016-12-02 Pedro Alves * gdb.base/commands.exp (user_defined_command_args_stack_test): New procedure. (top level): Call it.