From: Eugene Syromyatnikov Date: Mon, 21 May 2018 00:35:45 +0000 (+0200) Subject: tests/qual_fault.test: swap expected/output files in match_diff calls X-Git-Tag: v4.23~135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbfe5335e5858e1215eefba83f13adc31ce36904;p=strace tests/qual_fault.test: swap expected/output files in match_diff calls match_diff expects the first argument as strace output and the second argument as expected output. * tests/qual_fault.test (check_fault_injection): Swap arguments in match_diff calls. --- diff --git a/tests/qual_fault.test b/tests/qual_fault.test index 12b0a850..5e5681cb 100755 --- a/tests/qual_fault.test +++ b/tests/qual_fault.test @@ -87,8 +87,8 @@ check_fault_injection() do pid=$(cat "$outpid.$i") - match_diff "$outout.$i" "$LOG.$pid" - match_diff "$outexp.$i" "$outgot.$i" + match_diff "$LOG.$pid" "$outout.$i" + match_diff "$outgot.$i" "$outexp.$i" done }