# HG changeset patch # User Moritz Warning # Date 1294326205 -3600 # Node ID e1b954780837c959cd6aeb0820ebb3399ddda9b9 # Parent e160bfec54d5813d10b9672af45c6cd336cc944c undo accidental changes diff -r e160bfec54d5 -r e1b954780837 Makefile --- 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) diff -r e160bfec54d5 -r e1b954780837 dstress.c --- 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