From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 95562 invoked by alias); 22 Apr 2017 15:44:58 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 95542 invoked by uid 89); 22 Apr 2017 15:44:57 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=hadn't, hadnt X-HELO: gproxy8.mail.unifiedlayer.com Received: from gproxy8-pub.mail.unifiedlayer.com (HELO gproxy8.mail.unifiedlayer.com) (67.222.33.93) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 22 Apr 2017 15:44:55 +0000 Received: from cmgw3 (unknown [10.0.90.84]) by gproxy8.mail.unifiedlayer.com (Postfix) with ESMTP id 236D11AB2F8 for ; Sat, 22 Apr 2017 09:44:56 -0600 (MDT) Received: from box522.bluehost.com ([74.220.219.122]) by cmgw3 with id BTks1v00N2f2jeq01TkvqQ; Sat, 22 Apr 2017 09:44:56 -0600 X-Authority-Analysis: v=2.2 cv=VKStp5HX c=1 sm=1 tr=0 a=GsOEXm/OWkKvwdLVJsfwcA==:117 a=GsOEXm/OWkKvwdLVJsfwcA==:17 a=AzvcPWV-tVgA:10 a=zstS-IiYAAAA:8 a=5YjHj4inFwbW9wPhzYYA:9 a=7Zwj6sZBwVKJAoWSPKxL6X1jA+E=:19 a=4G6NA9xxw8l3yy4pmD5M:22 Received: from 75-166-63-71.hlrn.qwest.net ([75.166.63.71]:36106 helo=bapiya) by box522.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.87) (envelope-from ) id 1d1xDQ-0000yy-PT; Sat, 22 Apr 2017 09:44:52 -0600 From: Tom Tromey To: Tom Tromey Cc: gdb-patches@sourceware.org Subject: Re: [RFA 0/5] some cleanup removal for ui_out References: <20170414022337.28368-1-tom@tromey.com> Date: Sat, 22 Apr 2017 15:44:00 -0000 In-Reply-To: <20170414022337.28368-1-tom@tromey.com> (Tom Tromey's message of "Thu, 13 Apr 2017 20:23:32 -0600") Message-ID: <87inlw4fbl.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-BWhitelist: no X-Exim-ID: 1d1xDQ-0000yy-PT X-Source-Sender: 75-166-63-71.hlrn.qwest.net (bapiya) [75.166.63.71]:36106 X-Source-Auth: tom+tromey.com X-Email-Count: 1 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTIyLmJsdWVob3N0LmNvbQ== X-SW-Source: 2017-04/txt/msg00626.txt.bz2 >>>>> "Tom" == Tom Tromey writes: Tom> This series converts various (easy) spots to use ui_out_emit_list or Tom> ui_out_emit_tuple. This removes a number of cleanups. I am finally going to check this in. I hadn't done so earlier because my buildbot runs were occasionally showing some failures. However, a recent run with a completely different patch shows the same failures, so I'm going forward on the theory that these patches of mine aren't causing the problem. The failures I'm seeing are from gdb.mi/user-selected-context-sync.exp, though exactly which failures are seen varies by run. PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_frame: thread 1.2: reset selection to thread 1.2 PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_select_frame: thread 1.2: reset selection to thread 1.2 PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_up_down: reset selection to thread 1.2 PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_stack_select_frame: thread 1.2: reset selection to thread 1.2 PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_frame: thread 1.2: reset selection to thread 1.2 PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_frame: thread 1.2: reset selection to thread 1.2 Tom