'testsuite' dir. Fix a bunch of broken tests. Fix the testsuite 'runtest' script so it actually reports all failures and provides meaningful feedback. -Erik
		
			
				
	
	
		
			10 lines
		
	
	
		
			101 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			101 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
echo foo >foo
 | 
						|
echo bar >bar
 | 
						|
set +e
 | 
						|
busybox cmp -s foo bar
 | 
						|
if [ $? != 0 ] ; then
 | 
						|
	exit 0;
 | 
						|
fi
 | 
						|
 | 
						|
exit 1;
 |