From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28092 invoked by alias); 18 Sep 2006 05:36:33 -0000 Received: (qmail 28084 invoked by uid 22791); 18 Sep 2006 05:36:32 -0000 X-Spam-Check-By: sourceware.org Received: from viper.snap.net.nz (HELO viper.snap.net.nz) (202.37.101.8) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 18 Sep 2006 05:36:30 +0000 Received: from kahikatea.snap.net.nz (p202-124-125-175.snap.net.nz [202.124.125.175]) by viper.snap.net.nz (Postfix) with ESMTP id DC33C7B7D15 for ; Mon, 18 Sep 2006 17:36:25 +1200 (NZST) Received: by kahikatea.snap.net.nz (Postfix, from userid 500) id CCEACBE3E8; Mon, 18 Sep 2006 17:33:58 +1200 (NZST) From: Nick Roberts MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17678.12228.757124.152763@kahikatea.snap.net.nz> Date: Mon, 18 Sep 2006 05:36:00 -0000 To: gdb-patches@sources.redhat.com Subject: [PATCH] gdb.base/multi-forks.exp X-Mailer: VM 7.19 under Emacs 22.0.50.13 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-09/txt/msg00094.txt.bz2 Going through the testsuite for nickrob-async-20060513-branch (multi-threaded tests fail due to new linux_nat_wait), I notice the test below fails for me on mainline. I don't know if __kernel_vsyscall is due to the 2.6 kernel, GCC 4.+ or how general it is. -- Nick http://www.inet.net.nz/~nickrob 2006-09-18 Nick Roberts * gdb.base/multi-forks.exp: Include __kernel_vsyscall in regexp. *** multi-forks.exp 10 Aug 2006 17:27:20 +1200 1.5 --- multi-forks.exp 18 Sep 2006 17:24:54 +1200 *************** *** 115,121 **** for {set i 1} {$i <= 15} {incr i} { gdb_test "continue" "Breakpoint .* main .*exit.*" "Run to exit $i" gdb_test "info fork" " 4 .* 3 .* 2 .* 1 .*" "info fork $i" ! gdb_test "restart $i" "(_dl_sysinfo_int80|fork).*" "restart $i" } gdb_test "continue" "Breakpoint .* main .*exit.*" "Run to exit 16" --- 115,122 ---- for {set i 1} {$i <= 15} {incr i} { gdb_test "continue" "Breakpoint .* main .*exit.*" "Run to exit $i" gdb_test "info fork" " 4 .* 3 .* 2 .* 1 .*" "info fork $i" ! gdb_test "restart $i" "(_dl_sysinfo_int80|fork|__kernel_vsyscall).*" \ ! "restart $i" }