~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

Removed test for ARCH (it only looked at Intel style systems). Left in SELECT for it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
402
402
--disable_query_log
403
403
select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES where VARIABLE_NAME like "VERSION_COMPILE_MACHINE" into @arch;
404
404
--enable_query_log
405
 
#Macos 32-bit uses i386, some(all?) linux use i686 and there may be some i586
406
 
if(!`select strcmp(@arch,"i386")`)
407
 
{
408
 
  --disable_warnings
409
 
}
410
 
if(!`select strcmp(@arch,"i586")`)
411
 
{
412
 
  --disable_warnings
413
 
}
414
 
if(!`select strcmp(@arch,"i686")`)
415
 
{
416
 
  --disable_warnings
417
 
}
418
405
 
419
406
set @@max_heap_table_size= 4294967296;
420
407
select @@max_heap_table_size > 0;