We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1245dc1 commit 57ad470Copy full SHA for 57ad470
1 file changed
tests/__init__.py
@@ -65,9 +65,7 @@ def run(cwd, exe, args, env=dict(os.environ), **kwargs):
65
if "asan" in os.environ.get("RUN_ANALYZER", ""):
66
env["ASAN_OPTIONS"] = "detect_leaks=1"
67
if "llvm-cov" in os.environ.get("RUN_ANALYZER", ""):
68
- # continuous mode is only supported on mac right now
69
- continuous = "%c" if sys.platform == "darwin" else ""
70
- env["LLVM_PROFILE_FILE"] = f"coverage-%p{continuous}.profraw"
+ env["LLVM_PROFILE_FILE"] = "coverage-%p%c.profraw"
71
if "kcov" in os.environ.get("RUN_ANALYZER", ""):
72
coverage_dir = os.path.join(cwd, "coverage")
73
cmd = [
0 commit comments