summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/iozone/install.sh
blob: 84454541779d2849a64ebbb2442ceb0b53472f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

tar -xvf iozone3_315.tar
cd iozone3_315/src/current/

case $OS_ARCH in
	"x86_64" )
	make linux-AMD64
	;;
	* )
	make linux
	;;
esac

echo "#!/bin/sh
iozone3_315/src/current/iozone \$@ > \$LOG_FILE 2>&1" > ../../../iozone
chmod +x ../../../iozone