From e7da0b54557a7ddfc32e8d7866b01d0b577d0e9f Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sat, 15 Dec 2018 12:02:37 +0300 Subject: [PATCH] test: nasm-t -- Reverse the comparision order Comparing new and old data is inconvenient since it rathe shows the reverse diff. Use straight direction instead. Signed-off-by: Cyrill Gorcunov --- travis/nasm-t.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/travis/nasm-t.py b/travis/nasm-t.py index aed1bfb0..14171c19 100755 --- a/travis/nasm-t.py +++ b/travis/nasm-t.py @@ -337,7 +337,7 @@ def test_run(desc): match_data = read_stdfile(match) if match_data == None: return test_fail(test, "Can't read " + match) - if cmp_std('stdout', stdout, match, match_data) == False: + if cmp_std(match, match_data, 'stdout', stdout) == False: return test_fail(desc['_test-name'], "Stdout mismatch") else: stdout = "" @@ -347,7 +347,7 @@ def test_run(desc): match_data = read_stdfile(match) if match_data == None: return test_fail(test, "Can't read " + match) - if cmp_std('stderr', stderr, match, match_data) == False: + if cmp_std(match, match_data, 'stderr', stderr) == False: return test_fail(desc['_test-name'], "Stderr mismatch") else: stderr = ""