Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Sep 2013 13:01:31 +0000 (UTC)
From:      Peter Holm <pho@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r255703 - user/pho/stress2/misc
Message-ID:  <201309191301.r8JD1VZr068776@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pho
Date: Thu Sep 19 13:01:31 2013
New Revision: 255703
URL: http://svnweb.freebsd.org/changeset/base/255703

Log:
  Limit run time to 2 minutes. ftsoptions must be non zero.
  
  Sponsored by:	EMC / Isilon storage division

Modified:
  user/pho/stress2/misc/syscall4.sh

Modified: user/pho/stress2/misc/syscall4.sh
==============================================================================
--- user/pho/stress2/misc/syscall4.sh	Thu Sep 19 12:28:59 2013	(r255702)
+++ user/pho/stress2/misc/syscall4.sh	Thu Sep 19 13:01:31 2013	(r255703)
@@ -163,7 +163,6 @@ test(void *arg __unused)
 	int i;
 
 	ftsoptions = FTS_PHYSICAL;
-	ftsoptions = 0;
 	args[0] = "/dev";
 	args[1] = "/proc";
 	args[2] = "/usr/compat/linux/proc";
@@ -188,8 +187,6 @@ test(void *arg __unused)
 			i = i % 900;
 		}
 
-		if (errno != 0 && errno != ENOENT)
-			warn("fts_read");
 		if (fts_close(fts) == -1)
 			err(1, "fts_close()");
 		if (pipe(fds) == -1)
@@ -249,7 +246,8 @@ main(int argc, char **argv)
 {
 	struct passwd *pw;
 	pthread_t rp, cp[50];
-	int i, j;
+	time_t start;
+	int j;
 
 	if ((pw = getpwnam("nobody")) == NULL)
 		err(1, "no such user: nobody");
@@ -276,7 +274,8 @@ main(int argc, char **argv)
 				errx(0, "syscall #%d is on the ignore list.", syscallno);
 	}
 
-	for (i = 0; i < 100000; i++) {
+	start = time(NULL);
+	while ((time(NULL) - start) < 120) {
 		if (fork() == 0) {
 			arc4random_stir();
 			if (pthread_create(&rp, NULL, test, NULL) != 0)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309191301.r8JD1VZr068776>