aboutsummaryrefslogtreecommitdiffstats
path: root/tool/run-gcov.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/run-gcov.rb')
-rw-r--r--tool/run-gcov.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/run-gcov.rb b/tool/run-gcov.rb
index cbeb900d3f..5df7622aa3 100644
--- a/tool/run-gcov.rb
+++ b/tool/run-gcov.rb
@@ -6,6 +6,8 @@ Pathname.glob("**/*.gcda").sort.each do |gcda|
if gcda.fnmatch("ext/*")
cwd, gcda = gcda.split.map {|s| s.to_s }
objdir = "."
+ elsif gcda.fnmatch("rubyspec_temp/*")
+ next
else
cwd, objdir, gcda = ".", gcda.dirname.to_s, gcda.to_s
end