This causes cgit to serve error pages, which is undesirable. This reverts commit5229c9b232, reversing changes made tof2b211131f.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			468 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			468 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
test_description='test format=flowed support of git am'
 | 
						|
 | 
						|
. ./test-lib.sh
 | 
						|
 | 
						|
test_expect_success 'setup' '
 | 
						|
	cp "$TEST_DIRECTORY/t4256/1/mailinfo.c.orig" mailinfo.c &&
 | 
						|
	git add mailinfo.c &&
 | 
						|
	git commit -m initial
 | 
						|
'
 | 
						|
 | 
						|
test_expect_success 'am with format=flowed' '
 | 
						|
	git am <"$TEST_DIRECTORY/t4256/1/patch" >stdout 2>stderr &&
 | 
						|
	test_i18ngrep "warning: Patch sent with format=flowed" stderr &&
 | 
						|
	test_cmp "$TEST_DIRECTORY/t4256/1/mailinfo.c" mailinfo.c
 | 
						|
'
 | 
						|
 | 
						|
test_done
 |