summaryrefslogtreecommitdiff
path: root/scripts/test/lld.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test/lld.py')
-rwxr-xr-xscripts/test/lld.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/scripts/test/lld.py b/scripts/test/lld.py
index f6aa91e6f..01ed51a4a 100755
--- a/scripts/test/lld.py
+++ b/scripts/test/lld.py
@@ -17,8 +17,8 @@
import os
from support import run_command
from shared import (
- fail, fail_with_error, files_with_pattern, options,
- WASM_EMSCRIPTEN_FINALIZE
+ fail_with_error, files_with_pattern, options,
+ WASM_EMSCRIPTEN_FINALIZE, fail_if_not_identical_to_file
)
@@ -44,9 +44,7 @@ def test_wasm_emscripten_finalize():
if not os.path.exists(expected_file):
print actual
fail_with_error('output ' + expected_file + ' does not exist')
- expected = open(expected_file, 'rb').read()
- if actual != expected:
- fail(actual, expected)
+ fail_if_not_identical_to_file(actual, expected_file)
if __name__ == '__main__':