Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Mar 2017 08:57:25 +0000 (UTC)
From:      Peter Holm <pho@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r315627 - user/pho/stress2/testcases/run
Message-ID:  <201703200857.v2K8vPwk021266@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pho
Date: Mon Mar 20 08:57:25 2017
New Revision: 315627
URL: https://svnweb.freebsd.org/changeset/base/315627

Log:
  Cleanup is handled by tools/cleanup.sh
  
  Sponsored by:	Dell EMC Isilon

Modified:
  user/pho/stress2/testcases/run/run.c

Modified: user/pho/stress2/testcases/run/run.c
==============================================================================
--- user/pho/stress2/testcases/run/run.c	Mon Mar 20 08:56:37 2017	(r315626)
+++ user/pho/stress2/testcases/run/run.c	Mon Mar 20 08:57:25 2017	(r315627)
@@ -70,16 +70,6 @@ clean(void)
 {
 	char buf[132];
 
-	/* cleanup after the syscall test */
-	snprintf(buf, sizeof(buf),
-		"cd %s; find . -type d -mtime -1 -exec chmod 777 {} \\;", op->wd);
-	(void)system(buf);
-	snprintf(buf, sizeof(buf),
-		"cd %s; find . -type f -mtime -1 -exec chmod 666 {} \\;", op->wd);
-	(void)system(buf);
-	snprintf(buf, sizeof(buf),
-		"cd %s; chflags \"nouappnd nouchg nouunlnk\" .", op->wd);
-	(void)system(buf);
 	snprintf(buf, sizeof(buf),
 		"cd %s; rm -rf syscall.[0-9]* fifo.[0-9]* creat.[0-9]* "
 		"p[0-9]*.d1 df lock", op->cd);



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