From: Darrick J. Wong Date: Wed, 15 Mar 2023 00:53:49 +0000 (-0700) Subject: report: record ext*-specific information about a test run X-Git-Tag: v2023.03.26~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ea9db87c90a1ce0e1dd3ffd44a1c0c550c25d824;p=xfstests-dev.git report: record ext*-specific information about a test run Report various ext* specific information about a test run. Signed-off-by: Darrick J. Wong Reviewed-by: Zorro Lang Signed-off-by: Zorro Lang --- diff --git a/common/ext4 b/common/ext4 index 8fd6dbc6..3dcbfe17 100644 --- a/common/ext4 +++ b/common/ext4 @@ -2,6 +2,11 @@ # ext4 specific common functions # +__generate_ext4_report_vars() { + __generate_blockdev_report_vars TEST_LOGDEV + __generate_blockdev_report_vars SCRATCH_LOGDEV +} + _setup_large_ext4_fs() { local fs_size=$1 diff --git a/common/report b/common/report index 86274af8..db15aec5 100644 --- a/common/report +++ b/common/report @@ -66,6 +66,7 @@ __generate_report_vars() { # Add per-filesystem variables to the report variable list test "$FSTYP" = "xfs" && __generate_xfs_report_vars + [[ "$FSTYP" == ext[0-9]* ]] && __generate_ext4_report_vars # Optional environmental variables for varname in "${REPORT_ENV_LIST_OPT[@]}"; do