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 b15a9b3 commit 4c88768Copy full SHA for 4c88768
scripts/kani-std-analysis/kani_std_analysis.py
@@ -87,6 +87,7 @@ def read_scan_functions(self):
87
88
for row in csv_reader:
89
if len(row) >= 5:
90
+ print(f"Row{self.crate}: " + str(row))
91
name, is_unsafe, has_unsafe_ops = row[0], row[1], row[2]
92
has_unsupported_input, has_loop = row[3], row[4]
93
# An unsafe function is a function for which is_unsafe=true
0 commit comments