namespace :test do
  desc "Run the functional tests"
  task :functional do
    sh "ruby ../tools/test_tool/bin/test_tool ../compiler/bin/rbp test"
  end
end

task :default  => "test:functional"

