We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 740b2b9 commit 52f06fbCopy full SHA for 52f06fb
1 file changed
run-tests.py
@@ -10,8 +10,8 @@ def cleanup(out):
10
if len(s) > 1 and s[0] == '#':
11
continue
12
s = "".join(s.split())
13
- ret = ret + s
14
- return ret
+ ret = ret + '\n' + s
+ return ret.strip()
15
16
commands = []
17
@@ -117,6 +117,10 @@ def cleanup(out):
117
usedTodos.append(filename)
118
else:
119
print('FAILED ' + cmd)
120
+ print('expected:')
121
+ print(clang_output)
122
+ print('actual:')
123
+ print(simplecpp_output)
124
if simplecpp_ec:
125
print('simplecpp failed - ' + simplecpp_err)
126
numberOfFailed = numberOfFailed + 1
0 commit comments