changeset 1627:e1b954780837

undo accidental changes
author Moritz Warning <moritzwarning@web.de>
date Thu, 06 Jan 2011 16:03:25 +0100
parents e160bfec54d5
children c6ef09dfba4d
files Makefile dstress.c
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Thu Jan 06 15:52:55 2011 +0100
+++ b/Makefile	Thu Jan 06 16:03:25 2011 +0100
@@ -147,7 +147,7 @@
 #
 nocompile : $(dstress__) nocompile_clean
 	echo '#!/bin/sh' > nocompile.sh
-	find nocompile -type f | grep -v ".svn" | sort -f | xargs -n 1 echo "$(dstress__) nocompile" >> nocompile.sh
+	find nocompile -type f | grep -v ".svn" | sort -f | xargs -n 1 echo "$(dstress__) torture-nocompile" >> nocompile.sh
 	chmod +x nocompile.sh
 	./nocompile.sh 2>> $(LOG)
 
@@ -177,7 +177,7 @@
 #
 compile : $(dstress__) compile_clean
 	echo '#!/bin/sh' > compile.sh
-	find compile -type f | grep -v ".svn" | sort -f | xargs -n 1 echo "$(dstress__) compile" >> compile.sh
+	find compile -type f | grep -v ".svn" | sort -f | xargs -n 1 echo "$(dstress__) torture-compile" >> compile.sh
 	chmod +x compile.sh
 	./compile.sh 2>> $(LOG)
 
@@ -205,7 +205,7 @@
 # 
 run : $(dstress__) run_clean
 	echo '#!/bin/sh' > run.sh
-	find run -type f -name "*\\.d" | grep -v ".svn" | sort -f | xargs -n 1 echo "$(dstress__) run" >> run.sh
+	find run -type f | grep -v ".svn" | sort -f | xargs -n 1 echo "$(dstress__) torture-run" >> run.sh
 	chmod +x run.sh
 	./run.sh 2>> $(LOG)
 
@@ -274,7 +274,7 @@
 # 
 norun : $(dstress__) norun_clean
 	echo '#!/bin/sh' > norun.sh
-	find norun -type f -name "*\\.d" | grep -v ".svn" | sort -f | xargs -n 1 echo "$(dstress__) norun" >> norun.sh
+	find norun -type f | grep -v ".svn" | sort -f | xargs -n 1 echo "$(dstress__) torture-norun" >> norun.sh
 	chmod +x norun.sh
 	./norun.sh 2>> $(LOG)
 
--- a/dstress.c	Thu Jan 06 15:52:55 2011 +0100
+++ b/dstress.c	Thu Jan 06 16:03:25 2011 +0100
@@ -157,7 +157,7 @@
 #define TORTURE_PREFIX		"torture-"
 
 #ifdef USE_POSIX
-#define		CRASH_RUN	"./crashRun 10 256"
+#define		CRASH_RUN	"./crashRun 30 1000"
 #ifdef USE_VALGRIND
 #define		VALGRIND	"valgrind --leak-check=no -q --suppressions=valgrind.suppress"	
 #else