用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
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.

30 lines
796 B

3 months ago
#Want to skip this test from daily Valgrind execution
--source include/no_valgrind_without_big.inc
# Turn on compression between the client and server
# and run a number of tests
# Save the initial number of concurrent sessions
--source include/count_sessions.inc
connect (comp_con,localhost,root,,,,,COMPRESS);
# Check compression turned on
SHOW STATUS LIKE 'Compression%';
# Source select test case
-- source include/common-tests.inc
connection default;
disconnect comp_con;
# Test zstd compressed connection.
connect(zstd_con, localhost, root,,,,,,,zstd,10);
# Check compression turned on
SHOW STATUS LIKE 'Compression%';
--source include/common-tests.inc
connection default;
disconnect zstd_con;
# Wait till all disconnects are completed
--source include/wait_until_count_sessions.inc