On Tue, Feb 03, 2015 at 03:07:17PM -0800, Jaegeuk Kim wrote: > This patch moves the generic testcases defined in xfs into tests/generic/. > * xfs/053 -> generic/054 > xfs/137 -> generic/137 > xfs/138 -> generic/138 > xfs/139 -> generic/139 > xfs/140 -> generic/140 > xfs/179 -> generic/179 > xfs/180 -> generic/180 > xfs/182 -> generic/182 > xfs/200 -> generic/200 > * xfs/306 -> generic/305 > > * The test number was changed to address conflicts.
Just rename them all to the lowest unused numbers in the generic/ test directory. > Signed-off-by: Jaegeuk Kim <[email protected]> > --- > tests/generic/054 | 102 ++++++++++++++++++++++++++++++++++++++++ > tests/generic/054.out | 10 ++++ You should tell git to use a diff format that track renames. i.e $ git diff -M 97bf6af..2155355 diff --git a/fs/xfs/xfs_fs.h b/fs/xfs/libxfs/xfs_fs.h similarity index 100% rename from fs/xfs/xfs_fs.h rename to fs/xfs/libxfs/xfs_fs.h $ $ $ git diff --stat -M 97bf6af..2155355 fs/xfs/{ => libxfs}/xfs_fs.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) $ It's much easier to review rename patches in this format. :) Cheers, Dave. -- Dave Chinner [email protected] ------------------------------------------------------------------------------ Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ Linux-f2fs-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
