diff mbox series

[v3,fstests] check: add support for --start-after

Message ID 20240216180946.784869-1-mcgrof@kernel.org (mailing list archive)
State New
Headers show
Series [v3,fstests] check: add support for --start-after | expand

Commit Message

Luis Chamberlain Feb. 16, 2024, 6:09 p.m. UTC
Often times one is running a new test baseline we want to continue to
start testing where we left off if the last test was a crash. This is
in particular useful if you are doing automation and want to kick off
where the last test crashed.

To do this the first thing that occurred to me was to use the check.time
file as an expunge file but that doesn't work so well if you crashed
as the file turns out empty.

So instead add super simple argument --start-after which let's you
skip all tests inclusive of the test you specified, letting you pick up
where you last left off testing from a crash. This is intended to work
if you are not using a random order.

If the target test is not found in your test list we complain and
bail. This is not as obvious when you specify groups, so likewise
we do a special check when you use groups to ensure the test is at
least part of one group.

Demo:

root@demo-xfs-reflink /var/lib/xfstests # ./check -s xfs_reflink -n -g soak --start-after generic/025
Start after test generic/025 not found in any group specified.
Be sure you specify a test present in one of your test run groups if using --start-after.

Your set of groups have these tests:

generic/476 generic/521 generic/522 generic/616 generic/617 generic/642 generic/650

root@demo-xfs-reflink /var/lib/xfstests # ./check -s xfs_reflink -n -g soak --start-after generic/522
SECTION       -- xfs_reflink
RECREATING    -- xfs on /dev/loop16
FSTYP         -- xfs (non-debug)
PLATFORM      -- Linux/x86_64 demo-xfs-reflink 6.5.0-5-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.5.13-1 (2023-11-29)
MKFS_OPTIONS  -- -f -f -m reflink=1,rmapbt=1, -i sparse=1, /dev/loop5
MOUNT_OPTIONS -- /dev/loop5 /media/scratch

generic/616
generic/617
generic/642
generic/650

Reviewed-by: Andrey Albershteyn <aalbersh@redhat.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
---

Changes since v2:

- Simplify to just one variable as requested by Zorro
- Remove the unused grep_start_after variable as pointed out by Andrey Albersht
- Make the conflict with randomize explicit, although we could support
  it, it is just odd to use it with randomize...
- Replace the not-needed echo -e, with just echo

Changes since v1:                                                                                                                                                                             
                                                                                                                                                                                              
This all addresses Anand Jain's feedback.                                                                                                                                                     
                                                                                                                                                                                              
 - Skip tests completely which are not going to be run                                                                                                                                        
 - Sanity test to ensure the test is part of a group, if you listed                                                                                                                           
   groups, and if not provide a useful output giving the list of all                                                                                                                          
   tests in your group so you can know better which one is a valid test                                                                                                                       
   to skip                                                                                                                                                                                    
 - Sanity test to ensure the test you specified is valid                                                                                                                                      
 - Moves the trim during file processing now using a routine                                                                                                                                  
   trim_start_after()  

 check | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

Comments

David Disseldorp Feb. 19, 2024, 1:20 p.m. UTC | #1
On Fri, 16 Feb 2024 10:09:46 -0800, Luis Chamberlain wrote:

...
>  check | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 53 insertions(+)
> 
> diff --git a/check b/check
> index 71b9fbd07522..f081bf8ce685 100755
> --- a/check
> +++ b/check
> @@ -18,6 +18,7 @@ showme=false
>  have_test_arg=false
>  randomize=false
>  exact_order=false
> +start_after_test=""
>  export here=`pwd`
>  xfile=""
>  subdir_xfile=""
> @@ -80,6 +81,7 @@ check options
>      -b			brief test summary
>      -R fmt[,fmt]	generate report in formats specified. Supported formats: xunit, xunit-quiet
>      --large-fs		optimise scratch device for large filesystems
> +    --start-after	only start testing after the test specified

The usage text should include the <test> parameter.

>      -s section		run only specified section from config file
>      -S section		exclude the specified section from the config file
>      -L <n>		loop tests <n> times following a failure, measuring aggregate pass/fail metrics
> @@ -120,6 +122,8 @@ examples:
>   check -x stress xfs/*
>   check -X .exclude -g auto
>   check -E ~/.xfstests.exclude
> + check --start-after btrfs/010
> + check -n -g soak --start-after generic/522
>  '
>  	    exit 1
>  }
> @@ -204,6 +208,23 @@ trim_test_list()
>  	rm -f $tmp.grep
>  }
>  
> +# takes the list of tests to run in $tmp.list and skips all tests until
> +# the specified test is found. This will ensure the tests start after the
> +# test specified, it skips the test specified.
> +trim_start_after()
> +{
> +	local skip_test="$1"
> +	local starts_regexp=$(echo $skip_test | sed -e 's|\/|\\/|')
> +
> +	if grep -q $skip_test $tmp.list ; then
> +		rm -f $tmp.grep
> +		awk 'f;/.*'$starts_regexp'/{f=1}' $tmp.list > $tmp.tmp
> +		mv $tmp.tmp $tmp.list
> +	else
> +		echo "Test $skip_test not found in test list, be sure to use a valid test if using --start-after"
> +		exit 1
> +	fi
> +}

nit: it should be possible to collapse the sed+grep+awk into something a
bit more straightforward, e.g.

trim_start_after()
{
        if awk -v skip_test="tests/$1" \
           'f; $0 == skip_test {f=1} END {exit f}' $tmp.list > $tmp.tmp; then
                echo "$1 not found in test list, be sure to use a valid test if using --start-after"
                rm $tmp.tmp
                exit 1
        fi
        mv $tmp.tmp $tmp.list
}

>  
>  _wallclock()
>  {
> @@ -233,6 +254,9 @@ _prepare_test_list()
>  		# no test numbers, do everything
>  		get_all_tests
>  	else
> +		local group_all
> +		local start_after_found=0
> +		list=""
>  		for group in $GROUP_LIST; do
>  			list=$(get_group_list $group)
>  			if [ -z "$list" ]; then
> @@ -240,11 +264,28 @@ _prepare_test_list()
>  				exit 1
>  			fi
>  
> +			if [[ "$start_after_test" != "" && $start_after_found -ne 1 ]]; then
> +				echo $list | grep -q $start_after_test
> +				if [[ $? -eq 0 ]]; then
> +					start_after_found=1
> +				fi
> +			fi
>  			for t in $list; do
>  				grep -s "^$t\$" $tmp.list >/dev/null || \
>  							echo "$t" >>$tmp.list
>  			done
> +			group_all="$group_all $list"
>  		done
> +		if [[ "$start_after_test" != "" && $start_after_found -ne 1 ]]; then
> +			group_all=$(echo $group_all | sed -e 's|tests/||g')
> +			echo "Start after test $start_after_test not found in any group specified."
> +			echo "Be sure you specify a test present in one of your test run groups if using --start-after."
> +			echo
> +			echo "Your set of groups have these tests:"
> +			echo
> +			echo $group_all
> +			exit 1
> +		fi
>  	fi

Can't all of the _prepare_test_list() changes above be dropped?
trim_start_after() already performs the check that the test exists, and
with the above dropped we could also do things like, e.g.
  ./check --start-after generic/002 generic/00[1-9]

>  	# Specified groups to exclude
> @@ -258,6 +299,10 @@ _prepare_test_list()
>  		trim_test_list $list
>  	done
>  
> +	if [[ "$start_after_test" != "" ]]; then
> +		trim_start_after $start_after_test
> +	fi
> +
>  	# sort the list of tests into numeric order unless we're running tests
>  	# in the exact order specified
>  	if ! $exact_order; then
> @@ -313,6 +358,14 @@ while [ $# -gt 0 ]; do
>  				<(sed "s/#.*$//" $xfile)
>  		fi
>  		;;
> +	--start-after)
> +		if $randomize; then
> +			echo "Cannot specify -r and --start-after."
> +			exit 1
> +		fi

IIUC, this will only trigger if -r is parsed before --start-after, so it
should be moved after the loop.

> +		start_after_test="$2"
> +		shift
> +		;;
>  	-s)	RUN_SECTION="$RUN_SECTION $2"; shift ;;
>  	-S)	EXCLUDE_SECTION="$EXCLUDE_SECTION $2"; shift ;;
>  	-l)	diff="diff" ;;
diff mbox series

Patch

diff --git a/check b/check
index 71b9fbd07522..f081bf8ce685 100755
--- a/check
+++ b/check
@@ -18,6 +18,7 @@  showme=false
 have_test_arg=false
 randomize=false
 exact_order=false
+start_after_test=""
 export here=`pwd`
 xfile=""
 subdir_xfile=""
@@ -80,6 +81,7 @@  check options
     -b			brief test summary
     -R fmt[,fmt]	generate report in formats specified. Supported formats: xunit, xunit-quiet
     --large-fs		optimise scratch device for large filesystems
+    --start-after	only start testing after the test specified
     -s section		run only specified section from config file
     -S section		exclude the specified section from the config file
     -L <n>		loop tests <n> times following a failure, measuring aggregate pass/fail metrics
@@ -120,6 +122,8 @@  examples:
  check -x stress xfs/*
  check -X .exclude -g auto
  check -E ~/.xfstests.exclude
+ check --start-after btrfs/010
+ check -n -g soak --start-after generic/522
 '
 	    exit 1
 }
@@ -204,6 +208,23 @@  trim_test_list()
 	rm -f $tmp.grep
 }
 
+# takes the list of tests to run in $tmp.list and skips all tests until
+# the specified test is found. This will ensure the tests start after the
+# test specified, it skips the test specified.
+trim_start_after()
+{
+	local skip_test="$1"
+	local starts_regexp=$(echo $skip_test | sed -e 's|\/|\\/|')
+
+	if grep -q $skip_test $tmp.list ; then
+		rm -f $tmp.grep
+		awk 'f;/.*'$starts_regexp'/{f=1}' $tmp.list > $tmp.tmp
+		mv $tmp.tmp $tmp.list
+	else
+		echo "Test $skip_test not found in test list, be sure to use a valid test if using --start-after"
+		exit 1
+	fi
+}
 
 _wallclock()
 {
@@ -233,6 +254,9 @@  _prepare_test_list()
 		# no test numbers, do everything
 		get_all_tests
 	else
+		local group_all
+		local start_after_found=0
+		list=""
 		for group in $GROUP_LIST; do
 			list=$(get_group_list $group)
 			if [ -z "$list" ]; then
@@ -240,11 +264,28 @@  _prepare_test_list()
 				exit 1
 			fi
 
+			if [[ "$start_after_test" != "" && $start_after_found -ne 1 ]]; then
+				echo $list | grep -q $start_after_test
+				if [[ $? -eq 0 ]]; then
+					start_after_found=1
+				fi
+			fi
 			for t in $list; do
 				grep -s "^$t\$" $tmp.list >/dev/null || \
 							echo "$t" >>$tmp.list
 			done
+			group_all="$group_all $list"
 		done
+		if [[ "$start_after_test" != "" && $start_after_found -ne 1 ]]; then
+			group_all=$(echo $group_all | sed -e 's|tests/||g')
+			echo "Start after test $start_after_test not found in any group specified."
+			echo "Be sure you specify a test present in one of your test run groups if using --start-after."
+			echo
+			echo "Your set of groups have these tests:"
+			echo
+			echo $group_all
+			exit 1
+		fi
 	fi
 
 	# Specified groups to exclude
@@ -258,6 +299,10 @@  _prepare_test_list()
 		trim_test_list $list
 	done
 
+	if [[ "$start_after_test" != "" ]]; then
+		trim_start_after $start_after_test
+	fi
+
 	# sort the list of tests into numeric order unless we're running tests
 	# in the exact order specified
 	if ! $exact_order; then
@@ -313,6 +358,14 @@  while [ $# -gt 0 ]; do
 				<(sed "s/#.*$//" $xfile)
 		fi
 		;;
+	--start-after)
+		if $randomize; then
+			echo "Cannot specify -r and --start-after."
+			exit 1
+		fi
+		start_after_test="$2"
+		shift
+		;;
 	-s)	RUN_SECTION="$RUN_SECTION $2"; shift ;;
 	-S)	EXCLUDE_SECTION="$EXCLUDE_SECTION $2"; shift ;;
 	-l)	diff="diff" ;;