From 309fb822e6f24de54dbd107d4573a3bedac0bf9e Mon Sep 17 00:00:00 2001 From: Jim Mussared Date: Tue, 3 Nov 2020 17:38:09 +1100 Subject: [PATCH] tests/run-multitests.py: Fix diff order, show changes relative to truth. Signed-off-by: Jim Mussared --- tests/run-multitests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-multitests.py b/tests/run-multitests.py index ad032df38b..5b8e70e921 100755 --- a/tests/run-multitests.py +++ b/tests/run-multitests.py @@ -389,7 +389,7 @@ def run_tests(test_files, instances_truth, instances_test): print("### TRUTH ###") print(output_truth, end="") print("### DIFF ###") - print_diff(output_test, output_truth) + print_diff(output_truth, output_test) if cmd_args.show_output: print()