changeset 1387:dd574a01148c

Dstress on Mac OS X Anders F Bj?rklund <afb@algonet.se> 2007-03-08 email:dd8a3d4db0d92fc8dcbfc0b01c368306@algonet.se
author thomask
date Thu, 08 Mar 2007 16:19:09 +0000
parents 7a397590d6e0
children f22dcce89882
files Makefile
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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)