You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
701 B

  1. # We currently only have shm support on windows, so in order
  2. # to optimize things we skip this test on all other platforms
  3. --source include/windows.inc
  4. # Only run this test if shared memory is avaliable
  5. let $shm= query_get_value("SHOW VARIABLES LIKE 'shared_memory'", Value, 1);
  6. if (`SELECT '$shm' != 'ON'`){
  7. skip No shm support;
  8. }
  9. # Source select test case
  10. -- source include/common-tests.inc
  11. #
  12. # Bug #24924: shared-memory-base-name that is too long causes buffer overflow
  13. #
  14. --exec $MYSQLADMIN --no-defaults --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --shared-memory-base-name=HeyMrBaseNameXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ping
  15. --echo End of 5.0 tests.