Revision b3b875657f5fba0d11b86bd6dc4ff8e11bd6a441 authored by Siying Dong on 29 November 2016, 17:06:10 UTC, committed by Facebook Github Bot on 29 November 2016, 17:09:14 UTC
Summary:
"make analyze" complains the assignment is not useful. Remove it.
Closes https://github.com/facebook/rocksdb/pull/1581

Differential Revision: D4241697

Pulled By: siying

fbshipit-source-id: 178f67a
1 parent 4f6e89b
Raw File
jdb_bench.sh
PLATFORM=64
if [ `getconf LONG_BIT` != "64" ]
then
  PLATFORM=32
fi

ROCKS_JAR=`find target -name rocksdbjni*.jar`

echo "Running benchmark in $PLATFORM-Bit mode."
java -server -d$PLATFORM -XX:NewSize=4m -XX:+AggressiveOpts -Djava.library.path=target -cp "${ROCKS_JAR}:benchmark/target/classes" org.rocksdb.benchmark.DbBenchmark $@
back to top