Parse command line args to benchmarks.clj and treat them as benchmark names to run Add information on running benchmarks to DEVELOPER.md
8 lines
191 B
Bash
Executable file
8 lines
191 B
Bash
Executable file
#!/bin/bash
|
|
|
|
lein javac
|
|
lein version
|
|
echo
|
|
lein show-profiles bench
|
|
echo
|
|
java -server -XX:MaxInlineSize=100 -cp "$(lein with-profile bench classpath)" clojure.main scripts/benchmarks.clj "$@"
|