This patch creates tests/alpha directory and adds an "hello world" program as well as two tests. Signed-off-by: Tristan Gingold <gingold@adacore.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5216 c046a42c-6fe2-441c-8c8c-71466251a162
		
			
				
	
	
		
			6 lines
		
	
	
		
			59 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			59 B
		
	
	
	
		
			C
		
	
	
	
	
	
int main (void)
 | 
						|
{
 | 
						|
  write (1, "hello\n", 6);
 | 
						|
  return 0;
 | 
						|
}
 |