I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit a06c3fe0 authored by str4d's avatar str4d
Browse files

Add a script for running the benchmarks with or without jbigi

parent 6615586a
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
CWD=$(dirname "$0")
if [ "x$JBIGI" = 'x' ]
then
JBIGI="$CWD/../build/jbigi.jar"
fi
if [ "x$JAVA" = 'x' ]
then
JAVA=java
fi
CLASSPATH="$CWD/java/build/benchmarks.jar"
if [ "x${1:-}" = 'x--jbigi' ]
then
CLASSPATH="$CLASSPATH:$JBIGI"
shift
fi
$JAVA -cp "$CLASSPATH" org.openjdk.jmh.Main "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment