From 359e61d0f22815cdfd8c3744047877c8f803f2ce Mon Sep 17 00:00:00 2001 From: Will Daly Date: Wed, 5 Jun 2013 16:25:34 -0400 Subject: [PATCH] Fixed issue with xargs on Mac OS X. Removed cleaning of reports folders, since this was interferring with coverage reports generated sequentially by rake test. --- rakefiles/tests.rake | 6 ------ 1 file changed, 6 deletions(-) diff --git a/rakefiles/tests.rake b/rakefiles/tests.rake index 904ea4a54e..1c576f2cbb 100644 --- a/rakefiles/tests.rake +++ b/rakefiles/tests.rake @@ -45,12 +45,6 @@ end directory REPORT_DIR task :clean_test_files do - - # Delete all files in the reports directory, while preserving - # the directory structure. - sh("find #{REPORT_DIR} -type f -print0 | xargs --no-run-if-empty -0 rm") - - # Reset the test fixtures sh("git clean -fqdx test_root") end