diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2020-01-21 09:11:14 +0100 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2020-01-21 09:11:14 +0100 |
commit | ade89fc8980a0b2763734815df7634a129c6d5dc (patch) | |
tree | 5b5056d4a183241a8d0a6e2e93d304833934d2e6 /mysql-test/main/connect_debug.test | |
parent | bc43bf3e430c20bc2178e584215bd443054709d6 (diff) | |
parent | a5b38151c0c020633ff2f3bbd18901427039f5b4 (diff) | |
download | mariadb-git-ade89fc8980a0b2763734815df7634a129c6d5dc.tar.gz |
Merge branch '10.2' into 10.3
Diffstat (limited to 'mysql-test/main/connect_debug.test')
-rw-r--r-- | mysql-test/main/connect_debug.test | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/main/connect_debug.test b/mysql-test/main/connect_debug.test index 300a2de0fbd..169ba6e9fff 100644 --- a/mysql-test/main/connect_debug.test +++ b/mysql-test/main/connect_debug.test @@ -22,3 +22,18 @@ create user 'bad' identified by 'worse'; --exec $MYSQL --default-auth=mysql_old_password --user=bad --password=worse 2>&1 set global debug_dbug=@old_dbug; drop user bad; + +# +# Bug#29630767 - USE OF UNINITIALIZED VALUE IN LIBMYSQL (CLIENT.CC FUNCTION RUN_PLUGIN_AUTH) +# +set global debug_dbug='+d,increase_srv_handshake_scramble_len'; +--replace_result $MYSQL_TMP_DIR MYSQL_TMP_DIR $MASTER_MYPORT MASTER_MYPORT +--error 2027 +connect con1,localhost,root; +set global debug_dbug=@old_dbug; + +set global debug_dbug='+d,poison_srv_handshake_scramble_len'; +--replace_result $MYSQL_TMP_DIR MYSQL_TMP_DIR $MASTER_MYPORT MASTER_MYPORT +--error 2027 +connect con2,localhost,root; +set global debug_dbug=@old_dbug; |