Skip to content

Commit d8120ee

Browse files
processor.py: Include a trailing newline when writing each test file.
This is consistent with our prior cleanup in 8878fe5.
1 parent daaac0a commit d8120ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/3C/processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def process_smart(filename):
134134
elif susproto != "": test = [header, susproto, foo, bar, sus]
135135

136136
file = open(filename, "w+")
137-
file.write('\n\n'.join(test))
137+
file.write('\n\n'.join(test) + '\n')
138138
file.close()
139139

140140
os.system("{}3c -alltypes -addcr -output-postfix=checkedALL {}".format(bin_path, filename))

0 commit comments

Comments
 (0)