From owner-svn-src-user@freebsd.org Thu Apr 27 07:51:38 2017 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 910C9D52C32 for ; Thu, 27 Apr 2017 07:51:38 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5EC10180C; Thu, 27 Apr 2017 07:51:38 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3R7pbAE037639; Thu, 27 Apr 2017 07:51:37 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3R7pbc3037638; Thu, 27 Apr 2017 07:51:37 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201704270751.v3R7pbc3037638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Thu, 27 Apr 2017 07:51:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r317493 - user/pho/stress2/misc X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Apr 2017 07:51:38 -0000 Author: pho Date: Thu Apr 27 07:51:37 2017 New Revision: 317493 URL: https://svnweb.freebsd.org/changeset/base/317493 Log: Fix broken pthread error reporting and extend timeout. Sponsored by: Dell EMC Isilon Modified: user/pho/stress2/misc/namecache2.sh Modified: user/pho/stress2/misc/namecache2.sh ============================================================================== --- user/pho/stress2/misc/namecache2.sh Thu Apr 27 07:49:33 2017 (r317492) +++ user/pho/stress2/misc/namecache2.sh Thu Apr 27 07:51:37 2017 (r317493) @@ -151,7 +151,7 @@ main(void) } result = pthread_create(&threadId, NULL, statThread, NULL); if (result < 0) - err(1, "pthread_create(): %s\n", strerror(result)); + errc(1, result, "pthread_create()"); start = time(NULL); for (number = 0; number < 0x001FFFFF; number += 2) { @@ -183,7 +183,7 @@ main(void) nanosleep(&period, 0); return 0; } - if (time(NULL) - start > 600) { + if (time(NULL) - start > 1800) { fprintf(stderr, "Test timed out.\n"); break; }