Skip to content

Commit dd7df6c

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

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
@@ -133,7 +133,7 @@ def process_smart(filename):
133133
elif susproto != "": test = [header, susproto, foo, bar, sus]
134134

135135
file = open(filename, "w+")
136-
file.write('\n\n'.join(test))
136+
file.write('\n\n'.join(test) + '\n')
137137
file.close()
138138

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

0 commit comments

Comments
 (0)