Randomio is a multithreaded disk i/o microbenchmark. It

requires O_DIRECT, pread/pwrite, and pthreads.

WWW: http://www.arctic.org/~dean/randomio/

PR:		ports/149838
Submitted by:	Sergey Kandaurov <pluknet at gmail dot com> (maintainer)
Approved by:	beat (co-mentor)
This commit is contained in:
Bernhard Froehlich 2010-08-23 11:20:59 +00:00
parent f0e7d21442
commit 0777d56570
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=259827
5 changed files with 39 additions and 0 deletions

View file

@ -50,6 +50,7 @@
SUBDIR += postmark
SUBDIR += pybench
SUBDIR += raidtest
SUBDIR += randomio
SUBDIR += rawio
SUBDIR += rubygem-railsbench
SUBDIR += scimark2

View file

@ -0,0 +1,23 @@
# New ports collection makefile for: randomio
# Date created: 20 Aug 2010
# Whom: Sergey Kandaurov <pluknet@gmail.com>
#
# $FreeBSD$
#
PORTNAME= randomio
PORTVERSION= 1.4
CATEGORIES= benchmarks
MASTER_SITES= http://www.arctic.org/~dean/randomio/
MAINTAINER= pluknet@gmail.com
COMMENT= A multithreaded disk i/o microbenchmark
USE_BZIP2= yes
USE_GMAKE= yes
PLIST_FILES= bin/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (randomio-1.4.tar.bz2) = df8cd74b234045c001ce93fef0abb75b
SHA256 (randomio-1.4.tar.bz2) = 384da98a7d3da1df2a1bffb9fb499fce6d043588bbf225673fda028bdfd2386f
SIZE (randomio-1.4.tar.bz2) = 4249

View file

@ -0,0 +1,8 @@
--- Makefile.orig 2010-08-20 19:36:08.000000000 +0400
+++ Makefile 2010-08-20 19:39:25.000000000 +0400
@@ -5,3 +5,5 @@
clean:
rm -f *.o randomio
+
+all: randomio

View file

@ -0,0 +1,4 @@
Randomio is a multithreaded disk i/o microbenchmark. It
requires O_DIRECT, pread/pwrite, and pthreads.
WWW: http://www.arctic.org/~dean/randomio/