I recently added dmesg files to my nightly fstests summary page and noticed I was getting .dmesg files from runs that happened previously. This is because we don't remove the .dmesg file in the results directory when we go to run the test, so fstests results would show a test having failed with dmesg errors when it actually hadn't failed. Fix this by removing the .dmesg file when we are going to run a test. Signed-off-by: Josef Bacik <josef@xxxxxxxxxxxxxx> --- check | 1 + 1 file changed, 1 insertion(+) diff --git a/check b/check index bb7e030c..2021cb21 100755 --- a/check +++ b/check @@ -809,6 +809,7 @@ function run_section() # really going to try and run this one rm -f $seqres.out.bad + rm -f $seqres.dmesg # check if we really should run it _expunge_test $seqnum -- 2.26.3