Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: tools/clang/blink_gc_plugin/tests/test.py

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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):
« no previous file with comments | « tools/clang/blink_gc_plugin/tests/stack_allocated.txt ('k') | tools/clang/blink_gc_plugin/tests/trace_after_dispatch_impl.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698