From owner-svn-soc-all@FreeBSD.ORG Thu Aug 2 19:56:45 2012 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id E3F55106566B for ; Thu, 2 Aug 2012 19:56:43 +0000 (UTC) (envelope-from gmiller@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Thu, 02 Aug 2012 19:56:43 +0000 Date: Thu, 02 Aug 2012 19:56:43 +0000 From: gmiller@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20120802195643.E3F55106566B@hub.freebsd.org> Cc: Subject: socsvn commit: r240019 - in soc2012/gmiller/locking-head: . tools/regression/lib/libthr/lockprof X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2012 19:56:45 -0000 Author: gmiller Date: Thu Aug 2 19:56:43 2012 New Revision: 240019 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=240019 Log: r240081@FreeBSD-dev: root | 2012-07-24 13:15:39 -0500 Minor test case fix. Modified: soc2012/gmiller/locking-head/ (props changed) soc2012/gmiller/locking-head/tools/regression/lib/libthr/lockprof/lock-cycle.c Modified: soc2012/gmiller/locking-head/tools/regression/lib/libthr/lockprof/lock-cycle.c ============================================================================== --- soc2012/gmiller/locking-head/tools/regression/lib/libthr/lockprof/lock-cycle.c Thu Aug 2 15:13:12 2012 (r240018) +++ soc2012/gmiller/locking-head/tools/regression/lib/libthr/lockprof/lock-cycle.c Thu Aug 2 19:56:43 2012 (r240019) @@ -95,7 +95,7 @@ check(record_count == 1); check(strcmp(stats.file, "lock-cycle.c") == 0); - check(stats.line == 17); + check(stats.line == 43); check(stats.wait_max.tv_sec == 0 && stats.wait_max.tv_nsec == 0); @@ -129,7 +129,7 @@ check(record_count == 1); check(strcmp(stats.file, "lock-cycle.c") == 0); - check(stats.line == 17); + check(stats.line == 43); tm = stats.hold_max.tv_sec * 1000000L + stats.hold_max.tv_nsec / 1000; check(tm >= 30);