mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	- Remove the "hack" from mtr.pl that skipped searching for the .dll files when embedded and windows. Now the variables will be preoperly initialized. - Make the tests detect that they can't run on windows+embedded
		
			
				
	
	
		
			12 lines
		
	
	
		
			305 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			305 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
let $is_win = `select convert(@@version_compile_os using latin1) IN ("Win32","Win64","Windows")`;
 | 
						|
let $is_embedded = `select version() like '%embedded%'`;
 | 
						|
#echo is_win: $is_win;
 | 
						|
#echo is_embedded: $is_embedded;
 | 
						|
if ($is_win)
 | 
						|
{
 | 
						|
  if ($is_embedded)
 | 
						|
  {
 | 
						|
    skip Not supported with embedded on windows;
 | 
						|
  }
 | 
						|
}
 |