1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

Make check_output_test.py tolerate CRLF line endings in test output

This commit is contained in:
Bert Belder 2018-07-22 03:01:40 +02:00
parent cc14df427f
commit dcaf9b3227
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -27,9 +27,11 @@ def check_output_test(deno_exe_filename):
expected_out = f.read()
cmd = [deno_exe_filename, script_abs]
print " ".join(cmd)
actual_out = subprocess.check_output(cmd)
actual_out = subprocess.check_output(cmd, universal_newlines=True)
if expected_out != actual_out:
print "Expected output does not match actual."
print "Expected: " + expected_out
print "Actual: " + actual_out
sys.exit(1)