From mboxrd@z Thu Jan 1 00:00:00 1970 From: Amir Goldstein Subject: [PATCH] fix hardcoded reference to /mnt/test in common.attr Date: Tue, 31 May 2011 17:21:19 +0300 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Cc: sergey ivanov , Christoph Hellwig , linux-fsdevel To: XFS Return-path: Received: from mail-wy0-f174.google.com ([74.125.82.174]:54008 "EHLO mail-wy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753071Ab1EaOVU (ORCPT ); Tue, 31 May 2011 10:21:20 -0400 Received: by wya21 with SMTP id 21so3341423wya.19 for ; Tue, 31 May 2011 07:21:19 -0700 (PDT) Sender: linux-fsdevel-owner@vger.kernel.org List-ID: From: Amir Goldstein When trying to run test 70, we encountered several problems. Sergey has strace'd some of the problems to attempts to set xattr on the wrong test dir (/mnt/test/), which appears to be hardcoded in common.attr. Reported-by: Sergey Ivanov Signed-off-by: Amir Goldstein --- common.attr | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common.attr b/common.attr index 343edfc..37d0927 100644 --- a/common.attr +++ b/common.attr @@ -163,7 +163,7 @@ _require_attrs() # stored on disk. # touch $TEST_DIR/syscalltest - attr -s "user.xfstests" -V "attr" /mnt/test/ > $TEST_DIR/syscalltest.out 2>&1 + attr -s "user.xfstests" -V "attr" $TEST_DIR > $TEST_DIR/syscalltest.out 2>&1 cat $TEST_DIR/syscalltest.out >> $here/$seq.full if grep -q 'Function not implemented' $TEST_DIR/syscalltest.out; then -- 1.7.4.1