Commit 13bb3fa8 authored by unknown's avatar unknown
Browse files

Disabled syncronization test at it fails on multiple platforms. (Bug #24529)

Fixed that test_thr_alarm works


mysql-test/mysql-test-run.pl:
  Fixed typo
mysql-test/r/synchronization.result:
  Updated results
mysql-test/t/disabled.def:
  Disabled syncronization test at it fails on multiple platforms. (Bug #24529)
mysql-test/t/synchronization.test:
  Drop used tables
mysys/Makefile.am:
  Added 'debug' to be able to build test cases
mysys/thr_alarm.c:
  Fixed test case
parent c1477a3f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1235,7 +1235,7 @@ sub command_line_setup () {
# But a fairly safe range seems to be 5001 - 32767
#

sub set_mtr_build_thread_ports() {
sub set_mtr_build_thread_ports($) {
  my $mtr_build_thread= shift;

  # Up to two masters, up to three slaves
+1 −1
Original line number Diff line number Diff line
drop table if exists t1;
drop table if exists t1,t2;
CREATE TABLE t1 (x1 int);
ALTER TABLE t1 CHANGE x1 x2 int;
CREATE TABLE t2 LIKE t1;
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ rpl_ndb_myisam2ndb : Bug #19710 Cluster replication to partition table fa
rpl_row_blob_innodb      : BUG#18980 2006-04-10 kent    Test fails randomly
rpl_sp                   : BUG#16456 2006-02-16 jmiller
rpl_multi_engine         : BUG#22583 2006-09-23 lars
synchronization          : Bug#24529  	Test 'synchronization' fails on Mac pushbuild; Also on Linux 64 bit.

# the below testcase have been reworked to avoid the bug, test contains comment, keep bug open
#ndb_binlog_ddl_multi     : BUG#18976 2006-04-10 kent    CRBR: multiple binlog, second binlog may miss schema log events
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#

--disable_warnings
drop table if exists t1;
drop table if exists t1,t2;
--enable_warnings

connect (con1,localhost,root,,);
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ MYSQLBASEdir= $(prefix)
INCLUDES =		@ZLIB_INCLUDES@ -I$(top_builddir)/include \
			-I$(top_srcdir)/include -I$(srcdir)
pkglib_LIBRARIES =	libmysys.a
LDADD =			libmysys.a $(top_builddir)/strings/libmystrings.a
LDADD =			libmysys.a $(top_builddir)/strings/libmystrings.a $(top_builddir)/dbug/libdbug.a
noinst_HEADERS =	mysys_priv.h my_static.h
libmysys_a_SOURCES =    my_init.c my_getwd.c mf_getdate.c my_mmap.c \
			mf_path.c mf_loadpath.c my_file.c \
Loading