From patchwork Fri May 6 03:12:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dave Chinner X-Patchwork-Id: 12840488 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A0998C433F5 for ; Fri, 6 May 2022 03:12:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1388442AbiEFDQT (ORCPT ); Thu, 5 May 2022 23:16:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48694 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232443AbiEFDQS (ORCPT ); Thu, 5 May 2022 23:16:18 -0400 Received: from mail105.syd.optusnet.com.au (mail105.syd.optusnet.com.au [211.29.132.249]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 3962263BDF for ; Thu, 5 May 2022 20:12:36 -0700 (PDT) Received: from dread.disaster.area (pa49-181-2-147.pa.nsw.optusnet.com.au [49.181.2.147]) by mail105.syd.optusnet.com.au (Postfix) with ESMTPS id 5033510E6283 for ; Fri, 6 May 2022 13:12:34 +1000 (AEST) Received: from discord.disaster.area ([192.168.253.110]) by dread.disaster.area with esmtp (Exim 4.92.3) (envelope-from ) id 1nmoOO-008Ygf-F9 for fstests@vger.kernel.org; Fri, 06 May 2022 13:12:32 +1000 Received: from dave by discord.disaster.area with local (Exim 4.95) (envelope-from ) id 1nmoOO-0021sm-BY for fstests@vger.kernel.org; Fri, 06 May 2022 13:12:32 +1000 From: Dave Chinner To: fstests@vger.kernel.org Subject: [PATCH] fstests: faster group file creation Date: Fri, 6 May 2022 13:12:32 +1000 Message-Id: <20220506031232.483883-1-david@fromorbit.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.4 cv=e9dl9Yl/ c=1 sm=1 tr=0 ts=62749222 a=ivVLWpVy4j68lT4lJFbQgw==:117 a=ivVLWpVy4j68lT4lJFbQgw==:17 a=oZkIemNP1mAA:10 a=20KFwNOVAAAA:8 a=VjI-3l-qDItjYoU8h0MA:9 Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org From: Dave Chinner We don't need to execute every test just to check it's groups are valid. Just grab all the groups with grep, pull out the unique ones, then check them. This also avoids the problem of editor swap files being present in the test directory and breaking the build because they are not executable. Building on a clean, already built tree so it only builds the group lists: $ time make .... Building udf [GROUP] /home/dave/src/xfstests-dev/tests/udf/group.list Building xfs [GROUP] /home/dave/src/xfstests-dev/tests/xfs/group.list real 0m36.917s user 0m15.032s sys 0m26.219s $ Patched: $ time make .... Building udf [GROUP] /home/dave/src/xfstests-dev/tests/udf/group.list Building xfs [GROUP] /home/dave/src/xfstests-dev/tests/xfs/group.list groups "frobnozzle" not mentioned in documentation. gmake[3]: *** [../../include/buildgrouplist:8: group.list] Error 1 gmake[2]: *** [../include/buildrules:31: xfs] Error 2 gmake[1]: *** [include/buildrules:31: tests] Error 2 make: *** [Makefile:51: default] Error 2 real 0m1.751s user 0m0.863s sys 0m1.067s $ Just a little bit faster, and as you can see that it still detects groups that are not documented. There was also an open .001.swp file in the XFS directory and that doesn't throw a failure anymore, either. Signed-off-by: Dave Chinner --- common/preamble | 28 ----------------------- tools/mkgroupfile | 57 ++++++++++++++++++++++++++++++----------------- 2 files changed, 37 insertions(+), 48 deletions(-) diff --git a/common/preamble b/common/preamble index 64d79385..f4a405ac 100644 --- a/common/preamble +++ b/common/preamble @@ -23,26 +23,6 @@ _register_cleanup() trap "${cleanup}exit \$status" EXIT HUP INT QUIT TERM $* } -# Make sure each group is in the documentation file. -_check_groups() { - test -n "$GROUPNAME_DOC_FILE" || return 0 - - local testname="$(echo "$0" | sed -e 's/^.*tests\///g')" - declare -a missing=() - - for group in "$@"; do - if ! grep -q "^${group}[[:space:]]" "$GROUPNAME_DOC_FILE"; then - missing+=("\"${group}\"") - fi - done - test "${#missing}" -eq 0 && return 0 - - local suffix= - test "${#missing}" -gt 1 && suffix="s" - echo "$testname: group$suffix ${missing[@]} not mentioned in documentation." 1>&2 - return 1 -} - # Prepare to run a fstest by initializing the required global variables to # their defaults, sourcing common functions, registering a cleanup function, # and removing the $seqres.full file. @@ -59,14 +39,6 @@ _begin_fstest() seq=`basename $0` - # If we're only running the test to generate a group.list file, - # spit out the group data and exit. - if [ -n "$GENERATE_GROUPS" ]; then - _check_groups "$@" || exit 1 - echo "$seq $@" - exit 0 - fi - seqres=$RESULT_DIR/$seq echo "QA output created by $seq" diff --git a/tools/mkgroupfile b/tools/mkgroupfile index 3844e57d..5162db7d 100755 --- a/tools/mkgroupfile +++ b/tools/mkgroupfile @@ -11,40 +11,55 @@ fi test_dir="$PWD" groupfile="$1" +new_groups="/tmp/groups.$$" GROUPNAME_DOC_FILE="$(readlink -m ../../doc/group-names.txt)" -export GROUPNAME_DOC_FILE if [ ! -x ../../check ]; then echo "$0: Run this from tests/XXX/." exit 1 fi -cleanup() { - test -z "$groupfile" && return - test -z "$ngroupfile" && return - - if [ $ret -eq 0 ]; then - mv -f "$ngroupfile" "$groupfile" - else - rm -f "$ngroupfile" - fi +cleanup() +{ + rm -f "$new_groups" } ret=1 # trigger cleanup of temporary files unless we succeed trap 'cleanup; exit $ret' EXIT INT TERM QUIT +# Make sure each group is in the documentation file. +_check_groups() { + test -n "$GROUPNAME_DOC_FILE" || return 0 + + local groups="$1" + declare -a missing=() + + for group in `grep -v '#' $groups`; do + if ! grep -q "^${group}[[:space:]]" "$GROUPNAME_DOC_FILE"; then + missing+=("\"${group}\"") + fi + done + test "${#missing}" -eq 0 && return 0 + + local suffix= + test "${#missing}" -gt 1 && suffix="s" + echo "group$suffix ${missing[@]} not mentioned in documentation." 1>&2 + ret=1 + exit 1 +} + generate_groupfile() { - cat << ENDL + cat << ENDL > $new_groups # QA groups control file, automatically generated. # See _begin_fstest in each test for details. ENDL + cd ../../ - export GENERATE_GROUPS=yes - grep -R -l "^_begin_fstest" "$test_dir/" 2>/dev/null | while read testfile; do - test -x "$testfile" && "$testfile" || return 1 - done | sort -g - ret="${PIPESTATUS[1]}" + grep -I -R "^_begin_fstest" $test_dir/ | \ + sed -e 's/^.*_begin_fstest //' -e 's/ /\n/g' | \ + sort -u >> $new_groups + _check_groups $new_groups cd "$test_dir" } @@ -52,10 +67,12 @@ if [ -z "$groupfile" ] || [ "$groupfile" = "-" ]; then # Dump the group file to stdout and exit unset groupfile generate_groupfile + cat $new_groups else # Otherwise, write the group file to disk somewhere. - ngroupfile="${groupfile}.new" - rm -f "$ngroupfile" - generate_groupfile >> "$ngroupfile" - # let cleanup rename or delete ngroupfile + generate_groupfile + mv -f "$new_groups" "$groupfile" fi + +# Success! +ret=0