Message ID | 20220627222256.14175-2-ddiss@suse.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | check: add option to rerun failed tests | expand |
On Tue, Jun 28, 2022 at 12:22:51AM +0200, David Disseldorp wrote: > There's no need for multiple assignments. > > Signed-off-by: David Disseldorp <ddiss@suse.de> > --- > common/report | 26 +++++--------------------- > 1 file changed, 5 insertions(+), 21 deletions(-) > > diff --git a/common/report b/common/report > index 84d9e0a7..2b8285d8 100644 > --- a/common/report > +++ b/common/report > @@ -4,26 +4,10 @@ > > # List of xfstests's enviroment variables to include reports > ## TODO automate list population inside common/conf > -REPORT_ENV_LIST="$REPORT_ENV_LIST SECTION" > -REPORT_ENV_LIST="$REPORT_ENV_LIST FSTYP" > -REPORT_ENV_LIST="$REPORT_ENV_LIST PLATFORM" > -REPORT_ENV_LIST="$REPORT_ENV_LIST MKFS_OPTIONS" > -REPORT_ENV_LIST="$REPORT_ENV_LIST MOUNT_OPTIONS" > - > -REPORT_ENV_LIST="$REPORT_ENV_LIST HOST_OPTIONS" > -REPORT_ENV_LIST="$REPORT_ENV_LIST CHECK_OPTIONS" > -REPORT_ENV_LIST="$REPORT_ENV_LIST XFS_MKFS_OPTIONS" > -REPORT_ENV_LIST="$REPORT_ENV_LIST TIME_FACTOR" > -REPORT_ENV_LIST="$REPORT_ENV_LIST LOAD_FACTOR" > - > -REPORT_ENV_LIST="$REPORT_ENV_LIST TEST_DIR" > -REPORT_ENV_LIST="$REPORT_ENV_LIST TEST_DEV" > -REPORT_ENV_LIST="$REPORT_ENV_LIST SCRATCH_DEV" > -REPORT_ENV_LIST="$REPORT_ENV_LIST SCRATCH_MNT" > - > -REPORT_ENV_LIST="$REPORT_ENV_LIST OVL_UPPER" > -REPORT_ENV_LIST="$REPORT_ENV_LIST OVL_LOWER" > -REPORT_ENV_LIST="$REPORT_ENV_LIST OVL_WORK" > +REPORT_ENV_LIST=("SECTION" "FSTYP" "PLATFORM" "MKFS_OPTIONS" "MOUNT_OPTIONS" \ > + "HOST_OPTIONS" "CHECK_OPTIONS" "XFS_MKFS_OPTIONS" \ > + "TIME_FACTOR" "LOAD_FACTOR" "TEST_DIR" "TEST_DEV" \ > + "SCRATCH_DEV" "SCRATCH_MNT" "OVL_UPPER" "OVL_LOWER" "OVL_WORK") Cheers for the end of a stringbuilder pattern, Reviewed-by: Darrick J. Wong <djwong@kernel.org> --D > > encode_xml() > { > @@ -70,7 +54,7 @@ _xunit_make_section_report() > > # Properties > echo -e "\t<properties>" >> $REPORT_DIR/result.xml > - for p in $REPORT_ENV_LIST;do > + for p in "${REPORT_ENV_LIST[@]}"; do > _xunit_add_property "$p" > done > echo -e "\t</properties>" >> $REPORT_DIR/result.xml > -- > 2.35.3 >
diff --git a/common/report b/common/report index 84d9e0a7..2b8285d8 100644 --- a/common/report +++ b/common/report @@ -4,26 +4,10 @@ # List of xfstests's enviroment variables to include reports ## TODO automate list population inside common/conf -REPORT_ENV_LIST="$REPORT_ENV_LIST SECTION" -REPORT_ENV_LIST="$REPORT_ENV_LIST FSTYP" -REPORT_ENV_LIST="$REPORT_ENV_LIST PLATFORM" -REPORT_ENV_LIST="$REPORT_ENV_LIST MKFS_OPTIONS" -REPORT_ENV_LIST="$REPORT_ENV_LIST MOUNT_OPTIONS" - -REPORT_ENV_LIST="$REPORT_ENV_LIST HOST_OPTIONS" -REPORT_ENV_LIST="$REPORT_ENV_LIST CHECK_OPTIONS" -REPORT_ENV_LIST="$REPORT_ENV_LIST XFS_MKFS_OPTIONS" -REPORT_ENV_LIST="$REPORT_ENV_LIST TIME_FACTOR" -REPORT_ENV_LIST="$REPORT_ENV_LIST LOAD_FACTOR" - -REPORT_ENV_LIST="$REPORT_ENV_LIST TEST_DIR" -REPORT_ENV_LIST="$REPORT_ENV_LIST TEST_DEV" -REPORT_ENV_LIST="$REPORT_ENV_LIST SCRATCH_DEV" -REPORT_ENV_LIST="$REPORT_ENV_LIST SCRATCH_MNT" - -REPORT_ENV_LIST="$REPORT_ENV_LIST OVL_UPPER" -REPORT_ENV_LIST="$REPORT_ENV_LIST OVL_LOWER" -REPORT_ENV_LIST="$REPORT_ENV_LIST OVL_WORK" +REPORT_ENV_LIST=("SECTION" "FSTYP" "PLATFORM" "MKFS_OPTIONS" "MOUNT_OPTIONS" \ + "HOST_OPTIONS" "CHECK_OPTIONS" "XFS_MKFS_OPTIONS" \ + "TIME_FACTOR" "LOAD_FACTOR" "TEST_DIR" "TEST_DEV" \ + "SCRATCH_DEV" "SCRATCH_MNT" "OVL_UPPER" "OVL_LOWER" "OVL_WORK") encode_xml() { @@ -70,7 +54,7 @@ _xunit_make_section_report() # Properties echo -e "\t<properties>" >> $REPORT_DIR/result.xml - for p in $REPORT_ENV_LIST;do + for p in "${REPORT_ENV_LIST[@]}"; do _xunit_add_property "$p" done echo -e "\t</properties>" >> $REPORT_DIR/result.xml
There's no need for multiple assignments. Signed-off-by: David Disseldorp <ddiss@suse.de> --- common/report | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-)