File: /home/.cpan/build/DBD-mysql-5.009-0/t/mysql.mtest
{ local $opt = {
'mysql_config' => 'mysql_config',
'testhost' => '',
'nocatchstderr' => 0,
'libs' => '-L/usr/lib64/mysql -lmysqlclient -lssl -lcrypto -lresolv -lm',
'testdb' => 'test',
'nofoundrows' => 0,
'testsocket' => '',
'testport' => '',
'ldflags' => '',
'version' => '8.0.40',
'testuser' => 'root',
'cflags' => '-I/usr/include/mysql -m64',
'testpassword' => ''
};
$::test_host = $opt->{'testhost'};
$::test_port = $opt->{'testport'};
$::test_user = $opt->{'testuser'};
$::test_socket = $opt->{'testsocket'};
$::test_password = $opt->{'testpassword'};
$::test_db = $opt->{'testdb'};
$::test_dsn = "DBI:mysql:$::test_db";
$::test_dsn .= ";mysql_socket=$::test_socket" if $::test_socket;
$::test_dsn .= ":$::test_host" if $::test_host;
$::test_dsn .= ":$::test_port" if $::test_port;
$::test_mysql_config = $opt->{'mysql_config'};
} 1;