Message ID | 71413edbeb1ee5b945f0b82faccaf4a75e8ba56b.1691924176.git.fdmanana@suse.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | btrfs/213: fix failure due to misspelled function name | expand |
On Sun, Aug 13, 2023 at 12:01:22PM +0100, fdmanana@kernel.org wrote: > From: Filipe Manana <fdmanana@suse.com> > > The test is calling _not_run but it should be _notrun, so fix that. > > Signed-off-by: Filipe Manana <fdmanana@suse.com> > --- Good to me, Reviewed-by: Zorro Lang <zlang@redhat.com> > tests/btrfs/213 | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/btrfs/213 b/tests/btrfs/213 > index 5666d9b9..6def4f6e 100755 > --- a/tests/btrfs/213 > +++ b/tests/btrfs/213 > @@ -55,7 +55,7 @@ sleep $(($runtime / 4)) > # any error about no balance currently running. > $BTRFS_UTIL_PROG balance cancel "$SCRATCH_MNT" 2>&1 | grep -iq 'not in progress' > if [ $? -eq 0 ]; then > - _not_run "balance finished before we could cancel it" > + _notrun "balance finished before we could cancel it" > fi > > # Now check if we can finish relocating metadata, which should finish very > -- > 2.34.1 >
On 2023/8/13 19:01, fdmanana@kernel.org wrote: > From: Filipe Manana <fdmanana@suse.com> > > The test is calling _not_run but it should be _notrun, so fix that. > > Signed-off-by: Filipe Manana <fdmanana@suse.com> Reviewed-by: Qu Wenruo <wqu@suse.com> Thanks, Qu > --- > tests/btrfs/213 | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/btrfs/213 b/tests/btrfs/213 > index 5666d9b9..6def4f6e 100755 > --- a/tests/btrfs/213 > +++ b/tests/btrfs/213 > @@ -55,7 +55,7 @@ sleep $(($runtime / 4)) > # any error about no balance currently running. > $BTRFS_UTIL_PROG balance cancel "$SCRATCH_MNT" 2>&1 | grep -iq 'not in progress' > if [ $? -eq 0 ]; then > - _not_run "balance finished before we could cancel it" > + _notrun "balance finished before we could cancel it" > fi > > # Now check if we can finish relocating metadata, which should finish very
diff --git a/tests/btrfs/213 b/tests/btrfs/213 index 5666d9b9..6def4f6e 100755 --- a/tests/btrfs/213 +++ b/tests/btrfs/213 @@ -55,7 +55,7 @@ sleep $(($runtime / 4)) # any error about no balance currently running. $BTRFS_UTIL_PROG balance cancel "$SCRATCH_MNT" 2>&1 | grep -iq 'not in progress' if [ $? -eq 0 ]; then - _not_run "balance finished before we could cancel it" + _notrun "balance finished before we could cancel it" fi # Now check if we can finish relocating metadata, which should finish very