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 a3722b1 commit 695762bCopy full SHA for 695762b
juliet/juliet_summary.py
@@ -74,7 +74,7 @@ def check_path(filepath):
74
# '_good' or '_bad' determined by input parameter 'mode'
75
def goblint_cmd(filepath, filename, mode):
76
func = re.sub('a?\.c$', mode, filename) # File ending is cut and replaced by mode
77
- cmd = goblint_path + ' ' + filepath + ' ' + testsupport_files + ' -I ' + testsupport_path + ' --sets "mainfun[+]" ' + func + ' --enable dbg.debug --enable dbg.timing.enabled'
+ cmd = goblint_path + ' ' + filepath + ' ' + testsupport_files + ' -I ' + testsupport_path + ' --set "mainfun[+]" ' + func + ' --set ana.malloc.unique_address_count 1 --enable dbg.debug --enable dbg.timing.enabled'
78
print(filename + ' -- ' + mode[1:] + ' ', end='\r')
79
process = subprocess.run(cmd, shell=True, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
80
#title = '#####################\n' + mode.upper() + '\n#####################\n\n'
0 commit comments