clang needs a newline at the end of src
This commit is contained in:
parent
71963aa738
commit
7cf73c10ac
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -246,7 +246,7 @@ def test_compile(
|
|||
stdin = p.stdin
|
||||
assert stdin is not None
|
||||
try:
|
||||
stdin.write(src.encode('utf-8'))
|
||||
stdin.write((src + '\n').encode('utf-8'))
|
||||
stdin.close()
|
||||
except BrokenPipeError:
|
||||
return False
|
||||
|
|
|
|||
Loading…
Reference in a new issue