Commit c7ff3bdb authored by unknown's avatar unknown
Browse files

Updated after testing


mysql-test/mysql-test-run.pl:
  Improved printouts
mysql-test/r/compress.result:
  Updated test result
mysql-test/r/ssl.result:
  Updated test result
mysql-test/r/ssl_compress.result:
  Updated test result
mysql-test/t/compress.test:
  Use new connection
  Use common include file 
  Test feature is turned on both before and after tests
mysql-test/t/ssl.test:
  Use new connection
  Use common include file 
  Test feature is turned on both before and after tests
mysql-test/t/ssl_compress.test:
  Use new connection
  Use common include file 
  Test feature is turned on both before and after tests
parent efc190e7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1166,7 +1166,7 @@ sub check_ssl_support () {
      mtr_error("Couldn't find support for SSL");
      return;
    }
    mtr_report("Skipping SSL, mysqld does not support it");
    mtr_report("Skipping SSL, mysqld not compiled with SSL");
    $opt_ssl_supported= 0;
    $opt_ssl= 0;
    return;
@@ -1205,7 +1205,7 @@ sub check_ndbcluster_support () {
	        "--help"],
	       "", "/dev/null", "/dev/null", "") != 0 )
  {
    mtr_report("Skipping ndbcluster, mysqld does not support it");
    mtr_report("Skipping ndbcluster, mysqld not compiled with ndbcluster");
    $opt_with_ndbcluster= 0;
    return;
  }
+61 −850

File changed.

Preview size limit exceeded, changes collapsed.

+61 −850

File changed.

Preview size limit exceeded, changes collapsed.

+64 −850

File changed.

Preview size limit exceeded, changes collapsed.

+4 −6
Original line number Diff line number Diff line
@@ -3,15 +3,13 @@

-- source include/have_compress.inc


# Reconnect to turn compress on for
# default connection
disconnect default;
connect (default,localhost,root,,,,,COMPRESS);
connect (comp_con,localhost,root,,,,,COMPRESS);

# Check compression turned on
SHOW STATUS LIKE 'Compression';

# Source select test case
-- source t/select.test
-- source include/common-tests.inc

# Check compression turned on
SHOW STATUS LIKE 'Compression';
Loading