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

unzip -o sunflow-bin-v0.07.2.zip

echo "#!/bin/sh
cd sunflow

if [ \$SYS_MEMORY -ge 1280 ]
then
	JAVA_VM_MEMORY=1024M
elif [ \$SYS_MEMORY -ge 768 ]
then
	JAVA_VM_MEMORY=512M
else
	JAVA_VM_MEMORY=256M
fi

java -server -Xmx\$JAVA_VM_MEMORY -jar sunflow.jar -bench > \$LOG_FILE 2>&1" > sunflow-benchmark
chmod +x sunflow-benchmark