summaryrefslogtreecommitdiff
path: root/benchmarks/paranoia
diff options
context:
space:
mode:
authorgarbled <garbled>1998-12-26 15:59:54 +0000
committergarbled <garbled>1998-12-26 15:59:54 +0000
commit069601cc6968f844d963e20f6639ba6fd74b640c (patch)
tree6958f25a4817a66619dea1a60f9498023655b3f2 /benchmarks/paranoia
parent12f648cc39d932c1a94b5579dcb006fea47ac42f (diff)
downloadpkgsrc-069601cc6968f844d963e20f6639ba6fd74b640c.tar.gz
Fix all the benchmark targets so they work properly, and work with the
package uninstalled, with the exceptionof lmbench. Make non-batch targets for all the benchmarks, and create a results target which places all the results in /tmp for easier collection.
Diffstat (limited to 'benchmarks/paranoia')
-rw-r--r--benchmarks/paranoia/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/benchmarks/paranoia/Makefile b/benchmarks/paranoia/Makefile
index 13df3a5f167..6d4ca51af9b 100644
--- a/benchmarks/paranoia/Makefile
+++ b/benchmarks/paranoia/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 1998/09/24 09:08:16 agc Exp $
+# $NetBSD: Makefile,v 1.4 1998/12/26 15:59:56 garbled Exp $
DISTNAME= paranoia
PKGNAME= paranoia-960101
@@ -20,6 +20,10 @@ do-install:
${INSTALL_PROGRAM} ${WRKSRC}/paranoia ${PREFIX}/bin
benchmark:
- @(cd ${WRKSRC}; ./paranoia < ${FILESDIR}/paranoia.run)
+ @(cd ${WRKSRC}; ./paranoia < ${FILESDIR}/paranoia.run | tee paranoia.out)
+
+results:
+ -@${MKDIR} /tmp/benches/`domainname`
+ -@cp ${WRKSRC}/paranoia.out /tmp/benches/`domainname`/paranoia.`uname`-`uname -m`-`uname -r`.`hostname`
.include "../../mk/bsd.pkg.mk"