Skip to content

Commit

Permalink
Merge pull request #2185 from ldrumm/no-double-spacing
Browse files Browse the repository at this point in the history
Don't double-space captured output in test wrapper
  • Loading branch information
aarongreig authored Oct 11, 2024
2 parents c445e13 + 5c11083 commit d977bd7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/conformance/cts_exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,5 @@ def _print_cmdline(cmd_args, env, cwd, file=sys.stderr):
print(signal.strsignal(abs(rc)))

print("#### GTEST_OUTPUT ####", file=sys.stderr)
for output in output_list:
print(output, file=sys.stderr)
print(''.join(output_list), file=sys.stderr)
print("#### GTEST_OUTPUT_END ####", file=sys.stderr)

0 comments on commit d977bd7

Please sign in to comment.