From patchwork Mon Dec 21 13:04:57 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eryu Guan X-Patchwork-Id: 7895651 Return-Path: X-Original-To: patchwork-fstests@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 164049F349 for ; Mon, 21 Dec 2015 13:05:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3422F2053F for ; Mon, 21 Dec 2015 13:05:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4A175204D2 for ; Mon, 21 Dec 2015 13:05:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751224AbbLUNFI (ORCPT ); Mon, 21 Dec 2015 08:05:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47449 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751142AbbLUNFI (ORCPT ); Mon, 21 Dec 2015 08:05:08 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id EFB308E37C for ; Mon, 21 Dec 2015 13:05:07 +0000 (UTC) Received: from localhost (dhcp-12-106.nay.redhat.com [10.66.12.106]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tBLD54ZA007278; Mon, 21 Dec 2015 08:05:06 -0500 From: Eryu Guan To: fstests@vger.kernel.org Cc: Eryu Guan Subject: [PATCH] generic/263: be quiet about unsupported operation Date: Mon, 21 Dec 2015 21:04:57 +0800 Message-Id: <1450703097-3162-1-git-send-email-eguan@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Old kernels don't support zero-range/collapse-range/insert-range fallocate operations and fail the test as: +fsx: main: filesystem does not support fallocate mode 0x10, disabling! +: Operation not supported +fsx: main: filesystem does not support fallocate mode 0x8, disabling! +: Operation not supported +fsx: main: filesystem does not support fallocate mode 0x20, disabling! +: Operation not supported Adding "-q" option to fsx to quiet the warning message. Signed-off-by: Eryu Guan --- tests/generic/263 | 4 ++-- tests/generic/263.out | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/generic/263 b/tests/generic/263 index 7584bc7..d6456f8 100755 --- a/tests/generic/263 +++ b/tests/generic/263 @@ -58,8 +58,8 @@ run_fsx() psize=`$here/src/feature -s` bsize=`_min_dio_alignment $TEST_DEV` -run_fsx -N 10000 -o 8192 -l 500000 -r PSIZE -t BSIZE -w BSIZE -Z -run_fsx -N 10000 -o 128000 -l 500000 -r PSIZE -t BSIZE -w BSIZE -Z +run_fsx -N 10000 -o 8192 -l 500000 -r PSIZE -t BSIZE -w BSIZE -Z -q +run_fsx -N 10000 -o 128000 -l 500000 -r PSIZE -t BSIZE -w BSIZE -Z -q status=0 exit diff --git a/tests/generic/263.out b/tests/generic/263.out index 64699f6..5285735 100644 --- a/tests/generic/263.out +++ b/tests/generic/263.out @@ -1,3 +1,3 @@ QA output created by 263 -fsx -N 10000 -o 8192 -l 500000 -r PSIZE -t BSIZE -w BSIZE -Z -fsx -N 10000 -o 128000 -l 500000 -r PSIZE -t BSIZE -w BSIZE -Z +fsx -N 10000 -o 8192 -l 500000 -r PSIZE -t BSIZE -w BSIZE -Z -q +fsx -N 10000 -o 128000 -l 500000 -r PSIZE -t BSIZE -w BSIZE -Z -q