Skip to content

Commit

Permalink
remove pid file if it's there before starting tests
Browse files Browse the repository at this point in the history
  • Loading branch information
taf2 committed Apr 2, 2009
1 parent 0a4fd75 commit 20b6d94
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ end
# Test Tasks ---------------------------------------------------------
task :ta => :alltests
task :tu => :unittests
task :test => :unittests
task :test => [:rmpid,:unittests]

task :rmpid do
sh "rm -rf tests/server_lock-*"
end

if ENV['RELTEST']
announce "Release task testing - not running regression tests on alltests"
Expand Down

0 comments on commit 20b6d94

Please sign in to comment.