From patchwork Tue Nov 5 13:19:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kara X-Patchwork-Id: 11227701 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BDF7F15AB for ; Tue, 5 Nov 2019 13:19:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A51F521D7C for ; Tue, 5 Nov 2019 13:19:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388844AbfKENT1 (ORCPT ); Tue, 5 Nov 2019 08:19:27 -0500 Received: from mx2.suse.de ([195.135.220.15]:51608 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S2388782AbfKENT1 (ORCPT ); Tue, 5 Nov 2019 08:19:27 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 34C5FAFF6 for ; Tue, 5 Nov 2019 13:19:26 +0000 (UTC) Received: by quack2.suse.cz (Postfix, from userid 1000) id 061361E47E5; Tue, 5 Nov 2019 14:19:26 +0100 (CET) From: Jan Kara To: fstests@vger.kernel.org Subject: [PATCH 0/2] generic/050 fixes Date: Tue, 5 Nov 2019 14:19:20 +0100 Message-Id: <20191105131922.24848-1-jack@suse.cz> X-Mailer: git-send-email 2.16.4 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org Hello, test generic/050 generates false failures on filesystems without journal (e.g. ext4 in nojournal mode). The test actually makes some sense in these cases to test behavior with read-only devices so I've decided to fix the test by providing alternate output for such filesystems. Also XFS with quota was already special-cased in the test and was faking the output so the second patch transitions that to alternate output file as well. Honza