From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1539 invoked by alias); 29 Oct 2011 15:09:25 -0000 Received: (qmail 1528 invoked by uid 22791); 29 Oct 2011 15:09:23 -0000 X-SWARE-Spam-Status: No, hits=-7.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 29 Oct 2011 15:09:05 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p9TF94dF030298 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 29 Oct 2011 11:09:04 -0400 Received: from dhcp-25-89.brq.redhat.com (vpn-8-213.rdu.redhat.com [10.11.8.213]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p9TF93K8010411; Sat, 29 Oct 2011 11:09:03 -0400 Message-ID: <4EAC170E.1020007@redhat.com> Date: Sat, 29 Oct 2011 16:01:00 -0000 From: Marek Polacek User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20100827 Red Hat Thunderbird/3.1.3 MIME-Version: 1.0 To: Jan Kratochvil CC: Tom Tromey , gdb-patches@sourceware.org Subject: Re: [patch] testsuite: MI: racy results in async mode #2 References: <20111027101544.GA5288@host1.jankratochvil.net> <20111028083256.GA8281@host1.jankratochvil.net> <20111029100900.GA5767@host1.jankratochvil.net> <4EABD716.3080000@redhat.com> <4EABED10.2060600@redhat.com> <20111029140057.GA31363@host1.jankratochvil.net> In-Reply-To: <20111029140057.GA31363@host1.jankratochvil.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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 X-SW-Source: 2011-10/txt/msg00804.txt.bz2 On 10/29/2011 04:00 PM, Jan Kratochvil wrote: > I have attached this different kind of reproducer to the Bug: > http://sourceware.org/bugzilla/show_bug.cgi?id=12649#c6 PASSes->FAILs with writew.so on x86_64-unknown-linux-gnu: @@ -16333,7 +16333,7 @@ PASS: gdb.mi/mi-nonstop.exp: successfully compiled posix threads test case PASS: gdb.mi/mi-nonstop.exp: breakpoint at main PASS: gdb.mi/mi-nonstop.exp: mi runto main -PASS: gdb.mi/mi-nonstop.exp: breakpoint at marker +FAIL: gdb.mi/mi-nonstop.exp: breakpoint at marker PASS: gdb.mi/mi-nonstop.exp: w0,i0 stop PASS: gdb.mi/mi-nonstop.exp: w1,i0 stop PASS: gdb.mi/mi-nonstop.exp: thread state, stop 1 @@ -16377,7 +16377,7 @@ PASS: gdb.mi/mi-nsintrall.exp: successfully compiled posix threads test case PASS: gdb.mi/mi-nsintrall.exp: breakpoint at main PASS: gdb.mi/mi-nsintrall.exp: mi runto main -PASS: gdb.mi/mi-nsintrall.exp: breakpoint at thread_function +FAIL: gdb.mi/mi-nsintrall.exp: breakpoint at thread_function PASS: gdb.mi/mi-nsintrall.exp: stop 0 PASS: gdb.mi/mi-nsintrall.exp: stop 1 PASS: gdb.mi/mi-nsintrall.exp: stop 2 @@ -16401,7 +16401,7 @@ PASS: gdb.mi/mi-nsmoribund.exp: successfully compiled posix threads test case PASS: gdb.mi/mi-nsmoribund.exp: breakpoint at main PASS: gdb.mi/mi-nsmoribund.exp: mi runto main -PASS: gdb.mi/mi-nsmoribund.exp: breakpoint at thread_function +FAIL: gdb.mi/mi-nsmoribund.exp: breakpoint at thread_function PASS: gdb.mi/mi-nsmoribund.exp: stop 0 PASS: gdb.mi/mi-nsmoribund.exp: stop 1 PASS: gdb.mi/mi-nsmoribund.exp: stop 2 @@ -16423,7 +16423,7 @@ PASS: gdb.mi/mi-nsthrexec.exp: successfully compiled posix threads test case PASS: gdb.mi/mi-nsthrexec.exp: breakpoint at main PASS: gdb.mi/mi-nsthrexec.exp: mi runto main -PASS: gdb.mi/mi-nsthrexec.exp: breakpoint at thread_execler +FAIL: gdb.mi/mi-nsthrexec.exp: breakpoint at thread_execler PASS: gdb.mi/mi-nsthrexec.exp: stop at thread_execler PASS: gdb.mi/mi-nsthrexec.exp: thread state, execler stopped, main running PASS: gdb.mi/mi-nsthrexec.exp: interrupt main thread @@ -20337,7 +20337,7 @@ PASS: gdb.threads/watchthreads2.exp: all threads started PASS: gdb.threads/watchthreads2.exp: watch x PASS: gdb.threads/watchthreads2.exp: set var test_ready = 1 -PASS: gdb.threads/watchthreads2.exp: all threads incremented x +KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app (PRMS: gdb/10116) Fortunately, there aren't many of them. Marek