Skip to content

Commit

Permalink
tests/run-multitests.py: Fix diff order, show changes relative to truth.
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
  • Loading branch information
jimmo authored and dpgeorge committed Nov 13, 2020
1 parent cc2a35b commit 309fb82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/run-multitests.py
Expand Up @@ -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()
Expand Down

0 comments on commit 309fb82

Please sign in to comment.