[llvm-commits] CVS: poolalloc/test/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Mar 7 19:16:39 PST 2004
Changes in directory poolalloc/test:
Makefile updated: 1.18 -> 1.19
---
Log message:
Add new target
---
Diffs of the changes: (+22 -0)
Index: poolalloc/test/Makefile
diff -u poolalloc/test/Makefile:1.18 poolalloc/test/Makefile:1.19
--- poolalloc/test/Makefile:1.18 Fri Mar 5 17:40:01 2004
+++ poolalloc/test/Makefile Fri Mar 5 18:02:09 2004
@@ -77,6 +77,28 @@
done
@printf "\a"; sleep 1; printf "\a"; sleep 1; printf "\a"
+progp4perf::
+ for dir in $(LARGE_PROBLEM_SIZE_DIRS); do \
+ (cd $$dir; \
+ PROJECT_DIR=$(BUILD_OBJ_ROOT) $(MAKE) -j1 TEST=p4perf \
+ LARGE_PROBLEM_SIZE=1 report.html) \
+ done
+ for dir in $(NORMAL_PROBLEM_SIZE_DIRS); do \
+ (cd $$dir; \
+ PROJECT_DIR=$(BUILD_OBJ_ROOT) $(MAKE) -j1 TEST=p4perf \
+ report.html) \
+ done
+ @for dir in $(LARGE_PROBLEM_SIZE_DIRS); do \
+ (cd $$dir; \
+ PROJECT_DIR=$(BUILD_OBJ_ROOT) $(MAKE) -s -j1 TEST=p4perf \
+ LARGE_PROBLEM_SIZE=1 report) \
+ done
+ @for dir in $(NORMAL_PROBLEM_SIZE_DIRS); do \
+ (cd $$dir; \
+ PROJECT_DIR=$(BUILD_OBJ_ROOT) $(MAKE) -s -j1 TEST=p4perf \
+ report) \
+ done
+ @printf "\a"; sleep 1; printf "\a"; sleep 1; printf "\a"
##############################################################################
# Targets for running tests and gathering statistics for arbitrary tests
More information about the llvm-commits
mailing list