FSTests Archive mirror
 help / color / mirror / Atom feed
From: 蔡晓斌 <caixiaobin0807@163.com>
To: fstests@vger.kernel.org
Subject: Question: Why tests/generic/482 and tests/generic/487 can't pass both at the same time.
Date: Mon, 25 Mar 2024 10:47:22 +0800 (CST)	[thread overview]
Message-ID: <7d19c3c3.51df.18e73815f19.Coremail.caixiaobin0807@163.com> (raw)


Hi, I have a question when I ran the xfstests, please help me to solve this question, tks.


In my environment, I ues the machine with architecture of aarch64, and then setting the env in local.config file like below:




# Ideally define at least these 4 to match your environment
# The first 2 are required.
# See README for other variables which can be set.
#
# Note: SCRATCH_DEV >will< get overwritten!


export TEST_DEV=/dev/mmcblk0p12
export TEST_DIR=/mnt/xfstests/dir
export FSTYP=ext4
export SCRATCH_DEV=/dev/mmcblk0p13
export SCRATCH_MNT=/mnt/xfstests/dir-mnt
export SCRATCH_LOGDEV=/dev/mmcblk0p14
export USE_EXTERNAL=yes
export DUMP_CORRUPT_FS=1
export KEEP_DMESG=yes
export USE_KMEMLEK=yes
export LOGWRITES_DEV=/dev/mmcblk0p15
export MIN_FSSIZE=10485760 # 10MB
export DIFF_LENGTH=0


And execute the command "./check -l -T tests/generic/[0-9][0-9][0-9]" to run the xfstests. When it ran out, I find that "tests/generic/482" was failed, and "tests/generic/487" was successed. 


So I check the source code for those two tests, and I found that used different function in them, like below :


tests/generic/482 :


# real QA test starts here


# Modify as appropriate.
_supported_fs generic


_require_no_logdev
_require_command "$KILLALL_PROG" killall


--------------------------------------------------------------


tests/generic/487 : 



# real QA test starts here
_require_scratch_nocheck


sflag='-s'
case $FSTYP in
        btrfs)
                _notrun "btrfs has a specialized test for this"
                ;;
        *)
                ;;
esac


_require_logdev
_require_dm_target error


Then continue to check the source code :

common/rc :



# this test needs a logdev
#
_require_logdev()
{
    [ -z "$SCRATCH_LOGDEV" -o ! -b "$SCRATCH_LOGDEV" ] && \
        _notrun "This test requires a valid \$SCRATCH_LOGDEV"
    [ "$USE_EXTERNAL" != yes ] && \
        _notrun "This test requires USE_EXTERNAL to be enabled"


    # ensure its not mounted
    $UMOUNT_PROG $SCRATCH_LOGDEV 2>/dev/null
}


# This test requires that an external log device is not in use
#
_require_no_logdev()
{
[ "$USE_EXTERNAL" = "yes" ] && [ -n "$SCRATCH_LOGDEV" ] && \
_notrun "Test not compatible with external logs, skipped this test"
}


I find that these two functions behave as mutually exclusive in use, so I don't understand why xfstests can't pass both tests at the same time. Please help me to solve this question, thank you again. 


Looking forward to your reply.


             reply	other threads:[~2024-03-25  2:47 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-25  2:47 蔡晓斌 [this message]
2024-03-26 14:16 ` Question: Why tests/generic/482 and tests/generic/487 can't pass both at the same time Zorro Lang
2024-04-02  1:20   ` 蔡晓斌

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7d19c3c3.51df.18e73815f19.Coremail.caixiaobin0807@163.com \
    --to=caixiaobin0807@163.com \
    --cc=fstests@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).