Message ID | 201611180549.AA00019@WIN-5MHF4RKU941.jp.fujitsu.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Fri, Nov 18, 2016 at 02:49:51PM +0900, Tsutomu Itoh wrote: > convert-tests 004 failed because the argument to check_all_images > is not specified. > > # make test-convert > [TEST] convert-tests.sh > [TEST/conv] 004-ext2-backup-superblock-ranges > find: '': No such file or directory > # > > Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com> > --- > tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh b/tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh > index c56650b..d764ed8 100755 > --- a/tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh > +++ b/tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh > @@ -39,4 +39,4 @@ function check_image() { > rm -f $TEST_DEV > } > > -check_all_images > +check_all_images `pwd` I'll add a fallback to use the current directory instead of forcing all callsites to supply it. -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh b/tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh index c56650b..d764ed8 100755 --- a/tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh +++ b/tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh @@ -39,4 +39,4 @@ function check_image() { rm -f $TEST_DEV } -check_all_images +check_all_images `pwd`
convert-tests 004 failed because the argument to check_all_images is not specified. # make test-convert [TEST] convert-tests.sh [TEST/conv] 004-ext2-backup-superblock-ranges find: '': No such file or directory # Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com> --- tests/convert-tests/004-ext2-backup-superblock-ranges/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)