Jay Soffian | 3e18ce1 | 2010-01-23 03:30:00 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2010 Jay Soffian |
| 4 | # |
| 5 | |
| 6 | test_description='git svn --rewrite-uuid test' |
| 7 | |
| 8 | . ./lib-git-svn.sh |
| 9 | |
| 10 | uuid=6cc8ada4-5932-4b4a-8242-3534ed8a3232 |
| 11 | |
| 12 | test_expect_success 'load svn repo' " |
| 13 | svnadmin load -q '$rawsvnrepo' < '$TEST_DIRECTORY/t9153/svn.dump' && |
| 14 | git svn init --minimize-url --rewrite-uuid='$uuid' '$svnrepo' && |
| 15 | git svn fetch |
| 16 | " |
| 17 | |
| 18 | test_expect_success 'verify uuid' " |
| 19 | git cat-file commit refs/remotes/git-svn~0 | \ |
Jeff King | e1c0c15 | 2016-05-13 16:47:14 -0400 | [diff] [blame] | 20 | grep '^git-svn-id: .*@2 $uuid$' && |
Jay Soffian | 3e18ce1 | 2010-01-23 03:30:00 -0500 | [diff] [blame] | 21 | git cat-file commit refs/remotes/git-svn~1 | \ |
Jeff King | e1c0c15 | 2016-05-13 16:47:14 -0400 | [diff] [blame] | 22 | grep '^git-svn-id: .*@1 $uuid$' |
Jay Soffian | 3e18ce1 | 2010-01-23 03:30:00 -0500 | [diff] [blame] | 23 | " |
| 24 | |
| 25 | test_done |