fixed the performance suite

This commit is contained in:
Tobias Lütke
2012-10-20 10:53:53 -04:00
parent 661ff2ccdf
commit ce76dbf8d9
3 changed files with 21 additions and 20 deletions
+3 -3
View File
@@ -27,7 +27,7 @@ namespace :benchmark do
desc "Run the liquid benchmark"
task :run do
ruby "performance/benchmark.rb"
ruby "./performance/benchmark.rb"
end
end
@@ -37,12 +37,12 @@ namespace :profile do
desc "Run the liquid profile/performance coverage"
task :run do
ruby "performance/profile.rb"
ruby "./performance/profile.rb"
end
desc "Run KCacheGrind"
task :grind => :run do
system "kcachegrind /tmp/liquid.rubyprof_calltreeprinter.txt"
system "qcachegrind /tmp/liquid.rubyprof_calltreeprinter.txt"
end
end