# HG changeset patch # User thomask # Date 1173370749 0 # Node ID dd574a01148c981fdfca5755b70e29d33b0dfb87 # Parent 7a397590d6e0c503e394bbadfa0d21885ee260dd Dstress on Mac OS X Anders F Bj?rklund 2007-03-08 email:dd8a3d4db0d92fc8dcbfc0b01c368306@algonet.se diff -r 7a397590d6e0 -r dd574a01148c Makefile --- a/Makefile Wed Mar 07 23:10:27 2007 +0000 +++ b/Makefile Thu Mar 08 16:19:09 2007 +0000 @@ -114,7 +114,7 @@ $(CC) $(CFLAGS) $< -o $@ $(dstress__) : dstress.c $(crashRun__) Makefile - $(CC) $(CFLAGS) -DUSE_VALGRIND $< -o $@ + $(CC) $(CFLAGS) $< -o $@ basic_tools : $(ifeq__) $(return__) $(extract__) $(dstress__) @@ -146,7 +146,7 @@ # target should fail to compile # nocompile : $(dstress__) nocompile_clean - find nocompile -type f | grep -v ".svn" | sort --ignore-case | xargs -n 1 echo "$(dstress__) torture-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) @@ -175,7 +175,7 @@ # target should compile (excludes linking) # compile : $(dstress__) compile_clean - find compile -type f | grep -v ".svn" | sort --ignore-case | xargs -n 1 echo "$(dstress__) torture-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) @@ -202,7 +202,7 @@ # target should compile, link and run # run : $(dstress__) run_clean - find run -type f | grep -v ".svn" | sort --ignore-case | xargs -n 1 echo "$(dstress__) torture-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) @@ -270,7 +270,7 @@ # target should compile and link but fail to run # norun : $(dstress__) norun_clean - find norun -type f | grep -v ".svn" | sort --ignore-case | xargs -n 1 echo "$(dstress__) torture-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)