Index: tools/clang/blink_gc_plugin/tests/test.py |
diff --git a/tools/clang/blink_gc_plugin/tests/test.py b/tools/clang/blink_gc_plugin/tests/test.py |
index 5ade032313d9645879455d5f00587fd0159930df..91ae684bc1776e482904ca78c9b95d6506429558 100755 |
--- a/tools/clang/blink_gc_plugin/tests/test.py |
+++ b/tools/clang/blink_gc_plugin/tests/test.py |
@@ -63,7 +63,10 @@ def run_test(test_base_name, cmd, reset_results): |
if expected != actual: |
open(result_file, 'w').write(actual) |
- return 'expected and actual differed' |
+ error = 'expected and actual differed\n' |
+ error += 'Actual:\n' + actual |
+ error += 'Expected:\n' + expected |
+ return error |
def run_tests(clang_path, plugin_path, reset_results): |