Skip to content

Commit 57ad470

Browse files
committed
test with continuous on linux as well
1 parent 1245dc1 commit 57ad470

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ def run(cwd, exe, args, env=dict(os.environ), **kwargs):
6565
if "asan" in os.environ.get("RUN_ANALYZER", ""):
6666
env["ASAN_OPTIONS"] = "detect_leaks=1"
6767
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"
68+
env["LLVM_PROFILE_FILE"] = "coverage-%p%c.profraw"
7169
if "kcov" in os.environ.get("RUN_ANALYZER", ""):
7270
coverage_dir = os.path.join(cwd, "coverage")
7371
cmd = [

0 commit comments

Comments
 (0)