From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55537) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USDwI-0007Lc-1I for qemu-devel@nongnu.org; Tue, 16 Apr 2013 18:01:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1USDwF-0002xx-DP for qemu-devel@nongnu.org; Tue, 16 Apr 2013 18:01:21 -0400 Received: from cobra.newdream.net ([66.33.216.30]:49818) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USDwF-0002xk-7p for qemu-devel@nongnu.org; Tue, 16 Apr 2013 18:01:19 -0400 From: Sage Weil Date: Tue, 16 Apr 2013 15:01:14 -0700 Message-Id: <1366149674-21452-1-git-send-email-sage@inktank.com> Subject: [Qemu-devel] [PATCH] qemu-iotests: send 'rbd rm ...' stderr to /dev/null List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Sage Weil The rbd cli tool now sends progress info to stderr; send that to the bit bucket too. Signed-off-by: Sage Weil --- tests/qemu-iotests/common.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc index a536bf7..d7b0ad1 100644 --- a/tests/qemu-iotests/common.rc +++ b/tests/qemu-iotests/common.rc @@ -152,7 +152,7 @@ _cleanup_test_img() ;; rbd) - rbd rm $TEST_DIR/t.$IMGFMT > /dev/null + rbd rm $TEST_DIR/t.$IMGFMT > /dev/null 2> /dev/null ;; sheepdog) -- 1.7.9.5