初版
This commit is contained in:
51
build/lib/mysql/mysql-test/suite/stress/t/ddl_archive.test
Normal file
51
build/lib/mysql/mysql-test/suite/stress/t/ddl_archive.test
Normal file
@@ -0,0 +1,51 @@
|
||||
######## t/ddl_archive.test ######
|
||||
#
|
||||
# Stress the storage engine ARCHIVE with CREATE/DROP TABLE/INDEX
|
||||
#
|
||||
# Please look for details within include/ddl1.inc.
|
||||
#
|
||||
# Creation of this test:
|
||||
# 2007-07-04 mleich
|
||||
#
|
||||
|
||||
# Storage engine to be used in CREATE TABLE
|
||||
--source include/have_archive.inc
|
||||
let $engine_type= ARCHIVE;
|
||||
|
||||
|
||||
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
|
||||
{
|
||||
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
|
||||
}
|
||||
let $run= `SELECT '$BIG_TEST' = '1'`;
|
||||
if ($run)
|
||||
{
|
||||
# A run started with "--big-test" should be allowed to consume more time.
|
||||
# Rough intended runtime per subtest variant in seconds
|
||||
let $runtime = 5;
|
||||
# number of rounds till we look at the clock again
|
||||
let $loop_size= 100;
|
||||
}
|
||||
if (!$run)
|
||||
{
|
||||
let $runtime = 1;
|
||||
let $loop_size= 20;
|
||||
}
|
||||
|
||||
|
||||
##### Some preparations needed for the ddl*.inc scripts
|
||||
--source suite/stress/include/ddl.pre
|
||||
|
||||
# Tests set to comment fail because of CSV limitations
|
||||
# (limited number of keys, NULL within index not supported)
|
||||
# --source suite/stress/include/ddl1.inc
|
||||
--source suite/stress/include/ddl2.inc
|
||||
--source suite/stress/include/ddl3.inc
|
||||
# --source suite/stress/include/ddl4.inc
|
||||
--source suite/stress/include/ddl5.inc
|
||||
# --source suite/stress/include/ddl6.inc
|
||||
# --source suite/stress/include/ddl7.inc
|
||||
# --source suite/stress/include/ddl8.inc
|
||||
|
||||
##### Cleanup
|
||||
--source suite/stress/include/ddl.cln
|
||||
51
build/lib/mysql/mysql-test/suite/stress/t/ddl_csv.test
Normal file
51
build/lib/mysql/mysql-test/suite/stress/t/ddl_csv.test
Normal file
@@ -0,0 +1,51 @@
|
||||
######## t/ddl_csv.test ######
|
||||
#
|
||||
# Stress the storage engine CSV with CREATE/DROP TABLE/INDEX
|
||||
#
|
||||
# Please look for details within include/ddl1.inc.
|
||||
#
|
||||
# Creation of this test:
|
||||
# 2007-07-04 mleich
|
||||
#
|
||||
|
||||
# Storage engine to be used in CREATE TABLE
|
||||
--source include/have_csv.inc
|
||||
let $engine_type= CSV;
|
||||
|
||||
|
||||
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
|
||||
{
|
||||
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
|
||||
}
|
||||
let $run= `SELECT '$BIG_TEST' = '1'`;
|
||||
if ($run)
|
||||
{
|
||||
# A run started with "--big-test" should be allowed to consume more time.
|
||||
# Rough intended runtime per subtest variant in seconds
|
||||
let $runtime = 5;
|
||||
# number of rounds till we look at the clock again
|
||||
let $loop_size= 100;
|
||||
}
|
||||
if (!$run)
|
||||
{
|
||||
let $runtime = 1;
|
||||
let $loop_size= 20;
|
||||
}
|
||||
|
||||
|
||||
##### Some preparations needed for the ddl*.inc scripts
|
||||
--source suite/stress/include/ddl.pre
|
||||
|
||||
# Tests set to comment fail because of CSV limitations
|
||||
# (limited number of keys, AUTOINC not supported)
|
||||
# --source suite/stress/include/ddl1.inc
|
||||
--source suite/stress/include/ddl2.inc
|
||||
--source suite/stress/include/ddl3.inc
|
||||
# --source suite/stress/include/ddl4.inc
|
||||
# --source suite/stress/include/ddl5.inc
|
||||
# --source suite/stress/include/ddl6.inc
|
||||
# --source suite/stress/include/ddl7.inc
|
||||
# --source suite/stress/include/ddl8.inc
|
||||
|
||||
##### Cleanup
|
||||
--source suite/stress/include/ddl.cln
|
||||
49
build/lib/mysql/mysql-test/suite/stress/t/ddl_innodb.test
Normal file
49
build/lib/mysql/mysql-test/suite/stress/t/ddl_innodb.test
Normal file
@@ -0,0 +1,49 @@
|
||||
######## t/ddl_innodb.test ######
|
||||
#
|
||||
# Stress the storage engine InnoDB with CREATE/DROP TABLE/INDEX
|
||||
#
|
||||
# Please look for details within include/ddl1.inc.
|
||||
#
|
||||
# Creation of this test:
|
||||
# 2007-07-04 mleich
|
||||
#
|
||||
|
||||
# Storage engine to be used in CREATE TABLE
|
||||
--source include/have_innodb.inc
|
||||
let $engine_type= InnoDB;
|
||||
|
||||
|
||||
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
|
||||
{
|
||||
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
|
||||
}
|
||||
let $run= `SELECT '$BIG_TEST' = '1'`;
|
||||
if ($run)
|
||||
{
|
||||
# A run started with "--big-test" should be allowed to consume more time.
|
||||
# Rough intended runtime per subtest variant in seconds
|
||||
let $runtime = 5;
|
||||
# number of rounds till we look at the clock again
|
||||
let $loop_size= 100;
|
||||
}
|
||||
if (!$run)
|
||||
{
|
||||
let $runtime = 1;
|
||||
let $loop_size= 20;
|
||||
}
|
||||
|
||||
|
||||
##### Some preparations needed for the ddl*.inc scripts
|
||||
--source suite/stress/include/ddl.pre
|
||||
|
||||
--source suite/stress/include/ddl1.inc
|
||||
--source suite/stress/include/ddl2.inc
|
||||
--source suite/stress/include/ddl3.inc
|
||||
--source suite/stress/include/ddl4.inc
|
||||
--source suite/stress/include/ddl5.inc
|
||||
--source suite/stress/include/ddl6.inc
|
||||
--source suite/stress/include/ddl7.inc
|
||||
--source suite/stress/include/ddl8.inc
|
||||
|
||||
##### Cleanup
|
||||
--source suite/stress/include/ddl.cln
|
||||
48
build/lib/mysql/mysql-test/suite/stress/t/ddl_memory.test
Normal file
48
build/lib/mysql/mysql-test/suite/stress/t/ddl_memory.test
Normal file
@@ -0,0 +1,48 @@
|
||||
######## t/ddl_memory.test ######
|
||||
#
|
||||
# Stress the storage engine MEMORY with CREATE/DROP TABLE/INDEX
|
||||
#
|
||||
# Please look for details within include/ddl1.inc.
|
||||
#
|
||||
# Creation of this test:
|
||||
# 2007-07-04 mleich
|
||||
#
|
||||
|
||||
# Storage engine to be used in CREATE TABLE
|
||||
let $engine_type= MEMORY;
|
||||
|
||||
|
||||
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
|
||||
{
|
||||
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
|
||||
}
|
||||
let $run= `SELECT '$BIG_TEST' = '1'`;
|
||||
if ($run)
|
||||
{
|
||||
# A run started with "--big-test" should be allowed to consume more time.
|
||||
# Rough intended runtime per subtest variant in seconds
|
||||
let $runtime = 5;
|
||||
# number of rounds till we look at the clock again
|
||||
let $loop_size= 100;
|
||||
}
|
||||
if (!$run)
|
||||
{
|
||||
let $runtime = 1;
|
||||
let $loop_size= 20;
|
||||
}
|
||||
|
||||
|
||||
##### Some preparations needed for the ddl*.inc scripts
|
||||
--source suite/stress/include/ddl.pre
|
||||
|
||||
--source suite/stress/include/ddl1.inc
|
||||
--source suite/stress/include/ddl2.inc
|
||||
--source suite/stress/include/ddl3.inc
|
||||
--source suite/stress/include/ddl4.inc
|
||||
--source suite/stress/include/ddl5.inc
|
||||
--source suite/stress/include/ddl6.inc
|
||||
--source suite/stress/include/ddl7.inc
|
||||
--source suite/stress/include/ddl8.inc
|
||||
|
||||
##### Cleanup
|
||||
--source suite/stress/include/ddl.cln
|
||||
48
build/lib/mysql/mysql-test/suite/stress/t/ddl_myisam.test
Normal file
48
build/lib/mysql/mysql-test/suite/stress/t/ddl_myisam.test
Normal file
@@ -0,0 +1,48 @@
|
||||
######## t/ddl_myisam.test ######
|
||||
#
|
||||
# Stress the storage engine MyISAM with CREATE/DROP TABLE/INDEX
|
||||
#
|
||||
# Please look for details within include/ddl1.inc.
|
||||
#
|
||||
# Creation of this test:
|
||||
# 2007-07-04 mleich
|
||||
#
|
||||
|
||||
# Storage engine to be used in CREATE TABLE
|
||||
let $engine_type= MyISAM;
|
||||
|
||||
|
||||
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
|
||||
{
|
||||
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
|
||||
}
|
||||
let $run= `SELECT '$BIG_TEST' = '1'`;
|
||||
if ($run)
|
||||
{
|
||||
# A run started with "--big-test" should be allowed to consume more time.
|
||||
# Rough intended runtime per subtest variant in seconds
|
||||
let $runtime = 5;
|
||||
# number of rounds till we look at the clock again
|
||||
let $loop_size= 100;
|
||||
}
|
||||
if (!$run)
|
||||
{
|
||||
let $runtime = 1;
|
||||
let $loop_size= 20;
|
||||
}
|
||||
|
||||
|
||||
##### Some preparations needed for the ddl*.inc scripts
|
||||
--source suite/stress/include/ddl.pre
|
||||
|
||||
--source suite/stress/include/ddl1.inc
|
||||
--source suite/stress/include/ddl2.inc
|
||||
--source suite/stress/include/ddl3.inc
|
||||
--source suite/stress/include/ddl4.inc
|
||||
--source suite/stress/include/ddl5.inc
|
||||
--source suite/stress/include/ddl6.inc
|
||||
--source suite/stress/include/ddl7.inc
|
||||
--source suite/stress/include/ddl8.inc
|
||||
|
||||
##### Cleanup
|
||||
--source suite/stress/include/ddl.cln
|
||||
58
build/lib/mysql/mysql-test/suite/stress/t/ddl_ndb.test
Normal file
58
build/lib/mysql/mysql-test/suite/stress/t/ddl_ndb.test
Normal file
@@ -0,0 +1,58 @@
|
||||
######## t/ddl_ndb.test ######
|
||||
#
|
||||
# Stress the storage engine NDB with CREATE/DROP TABLE/INDEX
|
||||
#
|
||||
# Please look for details within include/ddl1.inc.
|
||||
#
|
||||
# Creation of this test:
|
||||
# 2007-07-04 mleich
|
||||
#
|
||||
|
||||
# Storage engine to be used in CREATE TABLE
|
||||
--source include/have_ndb.inc
|
||||
connection default;
|
||||
|
||||
let $engine_type= NDB;
|
||||
|
||||
|
||||
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
|
||||
{
|
||||
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
|
||||
}
|
||||
# Attention: We set here much smaller values for $runtime and $loop_size compared
|
||||
# to the other storage engines.
|
||||
# The reason is that NDB is extreme slow and should not exceed
|
||||
# the "testcase-timeout".
|
||||
let $run= `SELECT '$BIG_TEST' = '1'`;
|
||||
if ($run)
|
||||
{
|
||||
# A run started with "--big-test" should be allowed to consume more time.
|
||||
# Rough intended runtime per subtest variant in seconds
|
||||
let $runtime = 5;
|
||||
# number of rounds till we look at the clock again
|
||||
let $loop_size= 3;
|
||||
}
|
||||
if (!$run)
|
||||
{
|
||||
let $runtime = 1;
|
||||
let $loop_size= 1;
|
||||
}
|
||||
|
||||
|
||||
##### Some preparations needed for the ddl*.inc scripts
|
||||
--source suite/stress/include/ddl.pre
|
||||
|
||||
--source suite/stress/include/ddl1.inc
|
||||
--source suite/stress/include/ddl2.inc
|
||||
--source suite/stress/include/ddl3.inc
|
||||
--source suite/stress/include/ddl4.inc
|
||||
--source suite/stress/include/ddl5.inc
|
||||
--source suite/stress/include/ddl6.inc
|
||||
# The following test suffers from
|
||||
# Bug#26043 UNIQUE INDEX create always fails after constraint violation
|
||||
# and is therefore set to comment.
|
||||
# --source suite/stress/include/ddl7.inc
|
||||
--source suite/stress/include/ddl8.inc
|
||||
|
||||
##### Cleanup
|
||||
--source suite/stress/include/ddl.cln
|
||||
Reference in New Issue
Block a user