Skip to content

Commit 55ff129

Browse files
author
owen-jones-diffblue
authored
Merge pull request diffblue#468 from diffblue/owen-jones-diffblue/taint-over-list-models-precise-access-paths
SEC-248: Turn on precise access paths in taint over list models
2 parents f7f5102 + c925483 commit 55ff129

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

regression/end_to_end/driver.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def __exit__(self, exc_type, exc_value, traceback):
7070
if exc_value is not None:
7171
print("Failure may relate to command: ", self.cmdline, file=sys.stderr)
7272

73+
7374
def quote_pathnames_in_command_line(cmdline):
7475
assert isinstance(cmdline, list) and len(cmdline) > 0
7576
result = cmdline[:1]
@@ -81,6 +82,7 @@ def quote_pathnames_in_command_line(cmdline):
8182
result.append(cmdline[idx])
8283
return result
8384

85+
8486
def run_security_analyser_pipeline(
8587
relative_binary_path,
8688
relative_rules_path,

regression/end_to_end/taint_over_list_models/test_taint_over_list_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ def test_taint_over_list_models():
1616
"rules.json",
1717
os.path.realpath(os.path.dirname(__file__)),
1818
"Main.main",
19-
["--use-models-library", "--do-not-use-precise-access-paths"])
19+
["--use-models-library"])
2020
assert traces.count_traces() == 1
2121
assert traces.trace_exists("java::Main.main:()V", 14)

0 commit comments

Comments
 (0)