|
@@ -8,7 +8,8 @@ def start(args):
|
|
|
try:
|
|
|
subprocess.check_call("./rebar get-deps", shell=True, cwd="elli")
|
|
|
subprocess.check_call("./rebar compile", shell=True, cwd="elli")
|
|
|
- subprocess.check_call("erl -pa ebin deps/*/ebin +K true +sbwt very_long +swt very_low -s elli_bench -noshell -detached", shell=True, cwd="elli")
|
|
|
+ # adding +K true seemed to actually slow performance
|
|
|
+ subprocess.check_call("erl -pa ebin deps/*/ebin +sbwt very_long +swt very_low -s elli_bench -noshell -detached", shell=True, cwd="elli")
|
|
|
return 0
|
|
|
except subprocess.CalledProcessError:
|
|
|
return 1
|