File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Files listed will be ignored by the compiler warning checker
2
+ # for the Ubuntu/build and test job.
3
+ # Keep lines sorted lexicographically to help avoid merge conflicts.
Original file line number Diff line number Diff line change @@ -129,12 +129,10 @@ def main(argv: list[str] | None = None) -> int:
129
129
if not Path (args .compiler_output_file_path ).is_file ():
130
130
print (f"Compiler output file does not exist: { args .compiler_output_file_path } " )
131
131
return 1
132
-
133
132
# Check that the warning ignore file is a valid path
134
133
if not Path (args .warning_ignore_file_path ).is_file ():
135
134
print (f"Warning ignore file does not exist: { args .warning_ignore_file_path } " )
136
135
return 1
137
-
138
136
with Path (args .compiler_output_file_path ).open (encoding = "UTF-8" ) as f :
139
137
compiler_output_file_contents = f .read ()
140
138
You can’t perform that action at this time.
0 commit comments