Skip to content

Commit

Permalink
Fixed minor errors in update_bench_traces_rel_assert.py and update_be…
Browse files Browse the repository at this point in the history
…nch_traces_rel_yaml.py
  • Loading branch information
healthypunk committed May 13, 2024
1 parent 531a711 commit 6e373d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions update_bench_traces_rel_assert.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
goblint_assert = GoblintTool(
name="goblint_assert",
program=str(Path("../analyzer/goblint").absolute()),
args=["-v", "--conf", str(Path("../analyzer/conf/traces-rel.json").absolute()), "--enable", "dbg.debug","--set", "trans.activated[+]", "assert",
args=["-v", "--conf", str(Path("../analyzer/conf/traces-rel.json").absolute()), "--enable", "warn.debug","--set", "trans.activated[+]", "assert",
"--set" ,"ana.activated[+]" ,"apron" ,"--set" ,"ana.path_sens[+]" ,"threadflag", "--set" ,"ana.relation.privatization", "mutex-meet-tid-cluster12"],
dump = "assert"
)
Expand All @@ -21,7 +21,7 @@ def index_tool_factory(name, args):
goblint = GoblintTool(
name=name,
program=str(Path("../analyzer/goblint").absolute()),
args=["-v", "--conf", str(Path("../analyzer/conf/traces-rel.json").absolute()), "--enable", "dbg.debug"] + args,
args=["-v", "--conf", str(Path("../analyzer/conf/traces-rel.json").absolute()), "--enable", "warn.debug"] + args,
dump= 'apron',
assertion = goblint_assert
)
Expand Down
7 changes: 4 additions & 3 deletions update_bench_traces_rel_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
goblint_witness = GoblintTool(
name="witness_gen",
program=str(Path("../analyzer/goblint").absolute()),
args=["--conf", str(Path("../analyzer/conf/traces-rel.json").absolute()), "--enable", "dbg.debug", "--enable",
"witness.yaml.enabled"],
args=["--conf", str(Path("../analyzer/conf/traces-rel.json").absolute()), "--enable", "warn.debug", "--enable",
"witness.yaml.enabled","--set" ,"ana.activated[+]" ,"apron" ,"--set" ,"ana.path_sens[+]" ,"threadflag", "--set" ,"ana.relation.privatization", "mutex-meet-tid-cluster12",
"--set", "witness.yaml.entry-types[-]", "invariant_set"],
dump='witness'

)
Expand All @@ -23,7 +24,7 @@ def index_tool_factory(name, args):
goblint = GoblintTool(
name=name,
program=str(Path("../analyzer/goblint").absolute()),
args=["--conf", str(Path("../analyzer/conf/traces-rel.json").absolute()), "--enable", "dbg.debug"] + args,
args=["--conf", str(Path("../analyzer/conf/traces-rel.json").absolute()), "--enable", "warn.debug"] + args,
dump='apron',
validate= goblint_witness
)
Expand Down

0 comments on commit 6e373d5

Please sign in to comment.