##// END OF EJS Templates
coverage: deal with symlinked input paths (MacOSX issue)...
Patrick Mezard -
r6349:6aaf5b1d default
parent child Browse files
Show More
@@ -412,6 +412,9 b' class coverage:'
412 412 else:
413 413 omit = []
414 414
415 omit = [os.path.normcase(os.path.abspath(os.path.realpath(p)))
416 for p in omit]
417
415 418 if settings.get('report'):
416 419 self.report(args, show_missing, ignore_errors, omit_prefixes=omit)
417 420 if settings.get('annotate'):
@@ -537,7 +540,7 b' class coverage:'
537 540 if os.path.exists(g):
538 541 f = g
539 542 break
540 cf = os.path.normcase(os.path.abspath(f))
543 cf = os.path.normcase(os.path.abspath(os.path.realpath(f)))
541 544 self.canonical_filename_cache[filename] = cf
542 545 return self.canonical_filename_cache[filename]
543 546
General Comments 0
You need to be logged in to leave comments. Login now