 b186a261b1
			
		
	
	b186a261b1
	
	
	
		
			
			Since "trunk" is a convention for the main development branch in the SVN world, try to make that the master branch upon initial checkout if it exists. This is probably less surprising based on user requests. t9135 was the only test which relied on the previous behavior and thus needed to be modified. Signed-off-by: Eric Wong <normalperson@yhbt.net>
		
			
				
	
	
		
			22 lines
		
	
	
		
			434 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			434 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| test_description='test moved svn branch with missing empty files'
 | |
| 
 | |
| . ./lib-git-svn.sh
 | |
| test_expect_success 'load svn dumpfile'  '
 | |
| 	svnadmin load "$rawsvnrepo" < "${TEST_DIRECTORY}/t9135/svn.dump"
 | |
| 	'
 | |
| 
 | |
| test_expect_success 'clone using git svn' 'git svn clone -s "$svnrepo" x'
 | |
| 
 | |
| test_expect_success 'test that b1 exists and is empty' '
 | |
| 	(
 | |
| 		cd x &&
 | |
| 		git reset --hard branch-c &&
 | |
| 		test -f b1 &&
 | |
| 		! test -s b1
 | |
| 	)
 | |
| 	'
 | |
| 
 | |
| test_done
 |