MySQL源码安装

 1 获取mysql源码版本

http://dev.mysql.com/downloads/mysql/

MySQL源码安装_第1张图片


下载并留心MD5信息

MySQL源码安装_第2张图片

将下载后的文件上传到linux服务器上

2 校验 安装包

[root@server ~]# md5sum  -b MySQL-5.6.26-1.rhel5.src.rpm 
b054b30d89c03f6173af4c663d87acd3 *MySQL-5.6.26-1.rhel5.src.rpm

3 安装源码包


[root@server redhat]# pwd
/usr/src/redhat

[root@server redhat]# ll -R
.:
total 40
drwxr-xr-x 2 root root 4096 Nov 17  2010 BUILD
drwxr-xr-x 4 root root 4096 Feb 18  2012 RPMS
drwxr-xr-x 2 root root 4096 Nov 17  2010 SOURCES
drwxr-xr-x 2 root root 4096 Nov 17  2010 SPECS
drwxr-xr-x 2 root root 4096 Nov 17  2010 SRPMS

./BUILD:
total 0

./RPMS:
total 16
drwxr-xr-x 2 root root 4096 Nov 17  2010 noarch
drwxr-xr-x 2 root root 4096 Nov 17  2010 x86_64

./RPMS/noarch:
total 0

./RPMS/x86_64:
total 0

./SOURCES:
total 0

./SPECS:
total 0

./SRPMS:
total 0
[root@server redhat]# rpm -ivh /root/MySQL-5.6.26-1.rhel5.src.rpm
warning: /root/MySQL-5.6.26-1.rhel5.src.rpm: Header V3 DSA signature: NOKEY, key ID 5072e1f5
   1:MySQL                  ########################################### [100%]

[root@server redhat]# ll -R
.:
total 40
drwxr-xr-x 2 root root 4096 Nov 17  2010 BUILD
drwxr-xr-x 4 root root 4096 Feb 18  2012 RPMS
drwxr-xr-x 2 root root 4096 Aug  1 23:18 SOURCES
drwxr-xr-x 2 root root 4096 Aug  1 23:18 SPECS
drwxr-xr-x 2 root root 4096 Nov 17  2010 SRPMS

./BUILD:
total 0

./RPMS:
total 16
drwxr-xr-x 2 root root 4096 Nov 17  2010 noarch
drwxr-xr-x 2 root root 4096 Nov 17  2010 x86_64

./RPMS/noarch:
total 0

./RPMS/x86_64:
total 0

./SOURCES:
total 32536
-rw-r--r-- 1 root root 33278710 Jul 15 05:38 mysql-5.6.26.tar.gz

./SPECS:
total 84
-rw-r--r-- 1 root root 81786 Jul 15 05:38 mysql.spec

./SRPMS:
total 0


4安装Cmake

获取Cmake

http://www.cmake.org/download/

[root@server ~]# ./cmake-3.3.0-Linux-x86_64.sh
CMake Installer Version: 3.3.0, Copyright (c) Kitware
This is a self-extracting archive.
The archive will be extracted to: /root

If you want to stop extracting, please press .
CMake - Cross Platform Makefile Generator
Copyright 2000-2015 Kitware, Inc.
Copyright 2000-2011 Insight Software Consortium
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

* Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.

* Neither the names of Kitware, Inc., the Insight Software Consortium,
  nor the names of their contributors may be used to endorse or promote
  products derived from this software without specific prior written
  permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

------------------------------------------------------------------------------

The above copyright and license notice applies to distributions of
CMake in source and binary form.  Some source files contain additional
notices of original copyright by their contributors; see each source
for details.  Third-party software packages supplied with CMake under
compatible licenses provide their own copyright notices documented in
corresponding subdirectories.

------------------------------------------------------------------------------

CMake was initially developed by Kitware with the following sponsorship:

* National Library of Medicine at the National Institutes of Health
   as part of the Insight Segmentation and Registration Toolkit (ITK).

* US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel
   Visualization Initiative.

* National Alliance for Medical Image Computing (NAMIC) is funded by the
   National Institutes of Health through the NIH Roadmap for Medical Research,
   Grant U54 EB005149.

* Kitware, Inc.


Do you accept the license? [yN]:
y
By default the CMake will be installed in:
  "/root/cmake-3.3.0-Linux-x86_64"
Do you want to include the subdirectory cmake-3.3.0-Linux-x86_64?
Saying no will install in: "/root" [Yn]:
n        

Using target directory: /root
Extracting, please wait...

tar: Read 4608 bytes from -
Unpacking finished successfully





5预编译

编译选项参见

Mysql编译选项


[root@server mysql-5.6.26]# /root/bin/cmake \
> -DCMAKE_INSTALL_PREFIX=/mysql/software \
> -DMYSQL_DATADIR=/mysql/data \
> -DSYSCONFDIR=/etc \
> -DWITH_MYISAM_STORAGE_ENGINE=1 \
> -DWITH_INNOBASE_STORAGE_ENGINE=1 \
> -DWITH_MEMORY_STORAGE_ENGINE=1 \
> -DWITH_PERFSCHEMA_STORAGE_ENGINE=1\
> -DWITH_READLINE=1 \
> -DMYSQL_UNIX_ADDR=/mysql.sock \
> -DMYSQL_TCP_PORT=3306 \
> -DENABLED_LOCAL_INFILE=1 \
> -DWITH_PARTITION_STORAGE_ENGINE=1 \
> -DEXTRA_CHARSETS=all \
> -DDEFAULT_CHARSET=utf8 \
> -DDEFAULT_COLLATION=utf8_general_ci

-- Running cmake version 3.3.0
-- Could NOT find Git (missing:  GIT_EXECUTABLE)
-- The C compiler identification is GNU 4.1.2
-- The CXX compiler identification is GNU 4.1.2
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for SHM_HUGETLB
-- Looking for SHM_HUGETLB - found
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of void *
-- Check size of void * - done
-- MySQL 5.6.26
-- Packaging as: mysql-5.6.26-Linux-x86_64
-- Performing Test HAVE_LLVM_LIBCPP
-- Performing Test HAVE_LLVM_LIBCPP - Failed
-- Looking for floor
-- Looking for floor - not found
-- Looking for floor in m
-- Looking for floor in m - found
-- Looking for gethostbyname_r
-- Looking for gethostbyname_r - found
-- Looking for bind
-- Looking for bind - found
-- Looking for crypt
-- Looking for crypt - not found
-- Looking for crypt in crypt
-- Looking for crypt in crypt - found
-- Looking for setsockopt
-- Looking for setsockopt - found
-- Looking for dlopen
-- Looking for dlopen - not found
-- Looking for dlopen in dl
-- Looking for dlopen in dl - found
-- Looking for sched_yield
-- Looking for sched_yield - found
-- Looking for clock_gettime
-- Looking for clock_gettime - not found
-- Looking for clock_gettime in rt
-- Looking for clock_gettime in rt - found
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE 
-- Looking for 4 include files stdlib.h, ..., float.h
-- Looking for 4 include files stdlib.h, ..., float.h - found
-- Looking for include file alloca.h
-- Looking for include file alloca.h - found
-- Looking for include file aio.h
-- Looking for include file aio.h - found
-- Looking for include file arpa/inet.h
-- Looking for include file arpa/inet.h - found
-- Looking for include file crypt.h
-- Looking for include file crypt.h - found
-- Looking for include file cxxabi.h
-- Looking for include file cxxabi.h - not found
-- Looking for include file dirent.h
-- Looking for include file dirent.h - found
-- Looking for include file dlfcn.h
-- Looking for include file dlfcn.h - found
-- Looking for include file execinfo.h
-- Looking for include file execinfo.h - found
-- Looking for include file fcntl.h
-- Looking for include file fcntl.h - found
-- Looking for include file fenv.h
-- Looking for include file fenv.h - found
-- Looking for include file float.h
-- Looking for include file float.h - found
-- Looking for include file floatingpoint.h
-- Looking for include file floatingpoint.h - not found
-- Looking for include file fpu_control.h
-- Looking for include file fpu_control.h - found
-- Looking for include file grp.h
-- Looking for include file grp.h - found
-- Looking for include file ieeefp.h
-- Looking for include file ieeefp.h - not found
-- Looking for include file inttypes.h
-- Looking for include file inttypes.h - found
-- Looking for include file langinfo.h
-- Looking for include file langinfo.h - found
-- Looking for include file limits.h
-- Looking for include file limits.h - found
-- Looking for include file locale.h
-- Looking for include file locale.h - found
-- Looking for include file malloc.h
-- Looking for include file malloc.h - found
-- Looking for include file memory.h
-- Looking for include file memory.h - found
-- Looking for include file ndir.h
-- Looking for include file ndir.h - not found
-- Looking for include file netinet/in.h
-- Looking for include file netinet/in.h - found
-- Looking for include file paths.h
-- Looking for include file paths.h - found
-- Looking for include file port.h
-- Looking for include file port.h - not found
-- Looking for include file poll.h
-- Looking for include file poll.h - found
-- Looking for include file pwd.h
-- Looking for include file pwd.h - found
-- Looking for include file sched.h
-- Looking for include file sched.h - found
-- Looking for include file select.h
-- Looking for include file select.h - not found
-- Looking for include file semaphore.h
-- Looking for include file semaphore.h - found
-- Looking for include files sys/types.h, sys/dir.h
-- Looking for include files sys/types.h, sys/dir.h - found
-- Looking for include file sys/ndir.h
-- Looking for include file sys/ndir.h - not found
-- Looking for include file sys/pte.h
-- Looking for include file sys/pte.h - not found
-- Looking for include file stdlib.h
-- Looking for include file stdlib.h - found
-- Looking for include file strings.h
-- Looking for include file strings.h - found
-- Looking for include file string.h
-- Looking for include file string.h - found
-- Looking for include file synch.h
-- Looking for include file synch.h - not found
-- Looking for include file sysent.h
-- Looking for include file sysent.h - not found
-- Looking for include file sys/cdefs.h
-- Looking for include file sys/cdefs.h - found
-- Looking for include file sys/file.h
-- Looking for include file sys/file.h - found
-- Looking for include file sys/fpu.h
-- Looking for include file sys/fpu.h - not found
-- Looking for include file sys/ioctl.h
-- Looking for include file sys/ioctl.h - found
-- Looking for include file sys/ipc.h
-- Looking for include file sys/ipc.h - found
-- Looking for include file sys/malloc.h
-- Looking for include file sys/malloc.h - not found
-- Looking for include file sys/mman.h
-- Looking for include file sys/mman.h - found
-- Looking for include file sys/prctl.h
-- Looking for include file sys/prctl.h - found
-- Looking for include file sys/resource.h
-- Looking for include file sys/resource.h - found
-- Looking for include file sys/select.h
-- Looking for include file sys/select.h - found
-- Looking for include file sys/shm.h
-- Looking for include file sys/shm.h - found
-- Looking for include file sys/socket.h
-- Looking for include file sys/socket.h - found
-- Looking for include file sys/stat.h
-- Looking for include file sys/stat.h - found
-- Looking for include file sys/stream.h
-- Looking for include file sys/stream.h - not found
-- Looking for include file sys/termcap.h
-- Looking for include file sys/termcap.h - not found
-- Looking for include files time.h, sys/timeb.h
-- Looking for include files time.h, sys/timeb.h - found
-- Looking for include files curses.h, term.h
-- Looking for include files curses.h, term.h - found
-- Looking for include file asm/termbits.h
-- Looking for include file asm/termbits.h - found
-- Looking for include file termbits.h
-- Looking for include file termbits.h - not found
-- Looking for include file termios.h
-- Looking for include file termios.h - found
-- Looking for include file termio.h
-- Looking for include file termio.h - found
-- Looking for include file termcap.h
-- Looking for include file termcap.h - found
-- Looking for include file unistd.h
-- Looking for include file unistd.h - found
-- Looking for include file utime.h
-- Looking for include file utime.h - found
-- Looking for include file varargs.h
-- Looking for include file varargs.h - not found
-- Looking for include file sys/time.h
-- Looking for include file sys/time.h - found
-- Looking for include file sys/utime.h
-- Looking for include file sys/utime.h - not found
-- Looking for include file sys/wait.h
-- Looking for include file sys/wait.h - found
-- Looking for include file sys/param.h
-- Looking for include file sys/param.h - found
-- Looking for include file sys/vadvise.h
-- Looking for include file sys/vadvise.h - not found
-- Looking for include file fnmatch.h
-- Looking for include file fnmatch.h - found
-- Looking for include file stdarg.h
-- Looking for include file stdarg.h - found
-- Looking for include files stdlib.h, sys/un.h
-- Looking for include files stdlib.h, sys/un.h - found
-- Looking for include file vis.h
-- Looking for include file vis.h - not found
-- Looking for include file wchar.h
-- Looking for include file wchar.h - found
-- Looking for include file wctype.h
-- Looking for include file wctype.h - found
-- Looking for include file sasl/sasl.h
-- Looking for include file sasl/sasl.h - found
-- Looking for include file sys/devpoll.h
-- Looking for include file sys/devpoll.h - not found
-- Looking for include file signal.h
-- Looking for include file signal.h - found
-- Looking for include file sys/devpoll.h
-- Looking for include file sys/devpoll.h - not found
-- Looking for include file sys/epoll.h
-- Looking for include file sys/epoll.h - found
-- Looking for include file sys/event.h
-- Looking for include file sys/event.h - not found
-- Looking for include file sys/queue.h
-- Looking for include file sys/queue.h - found
-- Looking for TAILQ_FOREACH
-- Looking for TAILQ_FOREACH - found
-- Looking for include file sys/ptem.h
-- Looking for include file sys/ptem.h - not found
-- Performing Test HAVE_WERROR_FLAG
-- Performing Test HAVE_WERROR_FLAG - Success
-- Performing Test HAVE_PTHREAD_ONCE_INIT
-- Performing Test HAVE_PTHREAD_ONCE_INIT - Success
-- Looking for _aligned_malloc
-- Looking for _aligned_malloc - not found
-- Looking for _aligned_free
-- Looking for _aligned_free - not found
-- Looking for aio_read
-- Looking for aio_read - found
-- Looking for alarm
-- Looking for alarm - found
-- Looking for backtrace
-- Looking for backtrace - found
-- Looking for backtrace_symbols
-- Looking for backtrace_symbols - found
-- Looking for backtrace_symbols_fd
-- Looking for backtrace_symbols_fd - found
-- Looking for printstack
-- Looking for printstack - not found
-- Looking for bmove
-- Looking for bmove - not found
-- Looking for bsearch
-- Looking for bsearch - found
-- Looking for index
-- Looking for index - found
-- Looking for clock_gettime
-- Looking for clock_gettime - found
-- Looking for cuserid
-- Looking for cuserid - found
-- Looking for directio
-- Looking for directio - not found
-- Looking for _doprnt
-- Looking for _doprnt - not found
-- Looking for flockfile
-- Looking for flockfile - found
-- Looking for ftruncate
-- Looking for ftruncate - found
-- Looking for getline
-- Looking for getline - found
-- Looking for compress
-- Looking for compress - not found
-- Looking for crypt
-- Looking for crypt - found
-- Looking for dlerror
-- Looking for dlerror - found
-- Looking for dlopen
-- Looking for dlopen - found
-- Looking for fchmod
-- Looking for fchmod - found
-- Looking for fcntl
-- Looking for fcntl - found
-- Looking for fconvert
-- Looking for fconvert - not found
-- Looking for fdatasync
-- Looking for fdatasync - found
-- Looking for fdatasync
-- Looking for fdatasync - found
-- Looking for fedisableexcept
-- Looking for fedisableexcept - found
-- Looking for fpsetmask
-- Looking for fpsetmask - not found
-- Looking for fseeko
-- Looking for fseeko - found
-- Looking for fsync
-- Looking for fsync - found
-- Looking for getcwd
-- Looking for getcwd - found
-- Looking for gethostbyaddr_r
-- Looking for gethostbyaddr_r - found
-- Looking for gethrtime
-- Looking for gethrtime - not found
-- Looking for getnameinfo
-- Looking for getnameinfo - found
-- Looking for getpass
-- Looking for getpass - found
-- Looking for getpassphrase
-- Looking for getpassphrase - not found
-- Looking for getpwnam
-- Looking for getpwnam - found
-- Looking for getpwuid
-- Looking for getpwuid - found
-- Looking for getrlimit
-- Looking for getrlimit - found
-- Looking for getrusage
-- Looking for getrusage - found
-- Looking for getwd
-- Looking for getwd - found
-- Looking for gmtime_r
-- Looking for gmtime_r - found
-- Looking for initgroups
-- Looking for initgroups - found
-- Looking for issetugid
-- Looking for issetugid - not found
-- Looking for getuid
-- Looking for getuid - found
-- Looking for geteuid
-- Looking for geteuid - found
-- Looking for getgid
-- Looking for getgid - found
-- Looking for getegid
-- Looking for getegid - found
-- Looking for ldiv
-- Looking for ldiv - found
-- Looking for localtime_r
-- Looking for localtime_r - found
-- Looking for longjmp
-- Looking for longjmp - found
-- Looking for lstat
-- Looking for lstat - found
-- Looking for madvise
-- Looking for madvise - found
-- Looking for malloc_info
-- Looking for malloc_info - not found
-- Looking for memcpy
-- Looking for memcpy - found
-- Looking for memmove
-- Looking for memmove - found
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking for mlock
-- Looking for mlock - found
-- Looking for mlockall
-- Looking for mlockall - found
-- Looking for mmap
-- Looking for mmap - found
-- Looking for mmap64
-- Looking for mmap64 - found
-- Looking for perror
-- Looking for perror - found
-- Looking for poll
-- Looking for poll - found
-- Looking for port_create
-- Looking for port_create - not found
-- Looking for posix_fallocate
-- Looking for posix_fallocate - found
-- Looking for posix_memalign
-- Looking for posix_memalign - found
-- Looking for pread
-- Looking for pread - found
-- Looking for pthread_attr_create
-- Looking for pthread_attr_create - not found
-- Looking for pthread_attr_getguardsize
-- Looking for pthread_attr_getguardsize - found
-- Looking for pthread_attr_getstacksize
-- Looking for pthread_attr_getstacksize - found
-- Looking for pthread_attr_setscope
-- Looking for pthread_attr_setscope - found
-- Looking for pthread_attr_setstacksize
-- Looking for pthread_attr_setstacksize - found
-- Looking for pthread_condattr_create
-- Looking for pthread_condattr_create - not found
-- Looking for pthread_condattr_setclock
-- Looking for pthread_condattr_setclock - found
-- Looking for pthread_key_delete
-- Looking for pthread_key_delete - found
-- Looking for pthread_rwlock_rdlock
-- Looking for pthread_rwlock_rdlock - found
-- Looking for pthread_sigmask
-- Looking for pthread_sigmask - found
-- Looking for pthread_threadmask
-- Looking for pthread_threadmask - not found
-- Looking for pthread_yield_np
-- Looking for pthread_yield_np - not found
-- Looking for putenv
-- Looking for putenv - found
-- Looking for readdir_r
-- Looking for readdir_r - found
-- Looking for readlink
-- Looking for readlink - found
-- Looking for re_comp
-- Looking for re_comp - found
-- Looking for regcomp
-- Looking for regcomp - found
-- Looking for realpath
-- Looking for realpath - found
-- Looking for rename
-- Looking for rename - found
-- Looking for rwlock_init
-- Looking for rwlock_init - not found
-- Looking for sched_yield
-- Looking for sched_yield - found
-- Looking for setenv
-- Looking for setenv - found
-- Looking for setlocale
-- Looking for setlocale - found
-- Looking for setfd
-- Looking for setfd - not found
-- Looking for sigaction
-- Looking for sigaction - found
-- Looking for sigthreadmask
-- Looking for sigthreadmask - not found
-- Looking for sigwait
-- Looking for sigwait - found
-- Looking for sigaddset
-- Looking for sigaddset - found
-- Looking for sigemptyset
-- Looking for sigemptyset - found
-- Looking for sighold
-- Looking for sighold - found
-- Looking for sigset
-- Looking for sigset - found
-- Looking for sleep
-- Looking for sleep - found
-- Looking for snprintf
-- Looking for snprintf - found
-- Looking for stpcpy
-- Looking for stpcpy - found
-- Looking for strcoll
-- Looking for strcoll - found
-- Looking for strerror
-- Looking for strerror - found
-- Looking for strlcpy
-- Looking for strlcpy - not found
-- Looking for strnlen
-- Looking for strnlen - found
-- Looking for strlcat
-- Looking for strlcat - not found
-- Looking for strsignal
-- Looking for strsignal - found
-- Looking for fgetln
-- Looking for fgetln - not found
-- Looking for strpbrk
-- Looking for strpbrk - found
-- Looking for strsep
-- Looking for strsep - found
-- Looking for strstr
-- Looking for strstr - found
-- Looking for strtok_r
-- Looking for strtok_r - found
-- Looking for strtol
-- Looking for strtol - found
-- Looking for strtoll
-- Looking for strtoll - found
-- Looking for strtoul
-- Looking for strtoul - found
-- Looking for strtoull
-- Looking for strtoull - found
-- Looking for strcasecmp
-- Looking for strcasecmp - found
-- Looking for strncasecmp
-- Looking for strncasecmp - found
-- Looking for strdup
-- Looking for strdup - found
-- Looking for shmat
-- Looking for shmat - found
-- Looking for shmctl
-- Looking for shmctl - found
-- Looking for shmdt
-- Looking for shmdt - found
-- Looking for shmget
-- Looking for shmget - found
-- Looking for tell
-- Looking for tell - not found
-- Looking for tempnam
-- Looking for tempnam - found
-- Looking for thr_setconcurrency
-- Looking for thr_setconcurrency - not found
-- Looking for thr_yield
-- Looking for thr_yield - not found
-- Looking for vasprintf
-- Looking for vasprintf - found
-- Looking for vsnprintf
-- Looking for vsnprintf - found
-- Looking for vprintf
-- Looking for vprintf - found
-- Looking for valloc
-- Looking for valloc - found
-- Looking for memalign
-- Looking for memalign - found
-- Looking for chown
-- Looking for chown - found
-- Looking for nl_langinfo
-- Looking for nl_langinfo - found
-- Looking for ntohll
-- Looking for ntohll - not found
-- Looking for clock_gettime
-- Looking for clock_gettime - found
-- Looking for epoll_create
-- Looking for epoll_create - found
-- Looking for epoll_ctl
-- Looking for epoll_ctl - found
-- Looking for inet_ntop
-- Looking for inet_ntop - found
-- Looking for kqueue
-- Looking for kqueue - not found
-- Looking for kqueue
-- Looking for kqueue - not found
-- Looking for signal
-- Looking for signal - found
-- Looking for timeradd
-- Looking for timeradd - found
-- Looking for timerclear
-- Looking for timerclear - found
-- Looking for timercmp
-- Looking for timercmp - found
-- Looking for timerisset
-- Looking for timerisset - found
-- Looking for include file time.h
-- Looking for include file time.h - found
-- Looking for include file sys/times.h
-- Looking for include file sys/times.h - found
-- Looking for include file asm/msr.h
-- Looking for include file asm/msr.h - not found
-- Looking for include file ia64intrin.h
-- Looking for include file ia64intrin.h - not found
-- Looking for times
-- Looking for times - found
-- Looking for gettimeofday
-- Looking for gettimeofday - found
-- Looking for read_real_time
-- Looking for read_real_time - not found
-- Looking for ftime
-- Looking for ftime - found
-- Looking for time
-- Looking for time - found
-- Looking for rdtscll
-- Looking for rdtscll - not found
-- Looking for madvise
-- Looking for madvise - found
-- Looking for tzname
-- Looking for tzname - found
-- Looking for lrand48
-- Looking for lrand48 - found
-- Looking for getpagesize
-- Looking for getpagesize - found
-- Looking for TIOCGWINSZ
-- Looking for TIOCGWINSZ - found
-- Looking for FIONREAD
-- Looking for FIONREAD - found
-- Looking for TIOCSTAT
-- Looking for TIOCSTAT - not found
-- Looking for FIONREAD
-- Looking for FIONREAD - not found
-- Looking for finite
-- Looking for finite - found
-- Looking for log2
-- Looking for log2 - not found
-- Looking for isnan
-- Looking for isnan - found
-- Looking for rint
-- Looking for rint - found
-- Performing Test HAVE_ISINF
-- Performing Test HAVE_ISINF - Success
-- Performing Test HAVE_FESETROUND
-- Performing Test HAVE_FESETROUND - Success
-- Check if the system is big endian
-- Searching 16 bit integer
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Check size of sigset_t
-- Check size of sigset_t - done
-- Check size of mode_t
-- Check size of mode_t - done
-- Check size of char *
-- Check size of char * - done
-- Check size of long
-- Check size of long - done
-- Check size of size_t
-- Check size of size_t - done
-- Check size of char
-- Check size of char - done
-- Check size of short
-- Check size of short - done
-- Check size of int
-- Check size of int - done
-- Check size of long long
-- Check size of long long - done
-- Check size of off_t
-- Check size of off_t - done
-- Check size of uchar
-- Check size of uchar - failed
-- Check size of uint
-- Check size of uint - done
-- Check size of ulong
-- Check size of ulong - done
-- Check size of int8
-- Check size of int8 - failed
-- Check size of uint8
-- Check size of uint8 - failed
-- Check size of int16
-- Check size of int16 - failed
-- Check size of uint16
-- Check size of uint16 - failed
-- Check size of int32
-- Check size of int32 - failed
-- Check size of uint32
-- Check size of uint32 - failed
-- Check size of u_int32_t
-- Check size of u_int32_t - done
-- Check size of int64
-- Check size of int64 - failed
-- Check size of uint64
-- Check size of uint64 - failed
-- Check size of time_t
-- Check size of time_t - done
-- Check size of bool
-- Check size of bool - failed
-- Check size of socklen_t
-- Check size of socklen_t - done
-- Performing Test TIME_T_UNSIGNED
-- Performing Test TIME_T_UNSIGNED - Failed
-- Performing Test HAVE_GETADDRINFO
-- Performing Test HAVE_GETADDRINFO - Success
-- Performing Test HAVE_SELECT
-- Performing Test HAVE_SELECT - Success
-- Performing Test HAVE_TIMESPEC_TS_SEC
-- Performing Test HAVE_TIMESPEC_TS_SEC - Failed
-- Performing Test QSORT_TYPE_IS_VOID
-- Performing Test QSORT_TYPE_IS_VOID - Success
-- Performing Test HAVE_SOCKET_SIZE_T_AS_socklen_t
-- Performing Test HAVE_SOCKET_SIZE_T_AS_socklen_t - Success
-- Performing Test HAVE_PTHREAD_YIELD_ZERO_ARG
-- Performing Test HAVE_PTHREAD_YIELD_ZERO_ARG - Success
-- Checking stack direction : -1
-- Performing Test SIGNAL_RETURN_TYPE_IS_VOID
-- Performing Test SIGNAL_RETURN_TYPE_IS_VOID - Success
-- Looking for include files time.h, sys/time.h
-- Looking for include files time.h, sys/time.h - found
-- Looking for O_NONBLOCK
-- Looking for O_NONBLOCK - found
-- Performing Test C_HAS_inline
-- Performing Test C_HAS_inline - Success
-- Performing Test HAVE_PAUSE_INSTRUCTION
-- Performing Test HAVE_PAUSE_INSTRUCTION - Success
-- Looking for tcgetattr
-- Looking for tcgetattr - found
-- Performing Test HAVE_POSIX_SIGNALS
-- Performing Test HAVE_POSIX_SIGNALS - Success
-- Performing Test HAVE_BSS_START
-- Performing Test HAVE_BSS_START - Success
-- Performing Test HAVE_WEAK_SYMBOL
-- Performing Test HAVE_WEAK_SYMBOL - Success
-- Performing Test HAVE_SOLARIS_STYLE_GETHOST
-- Performing Test HAVE_SOLARIS_STYLE_GETHOST - Failed
-- Performing Test HAVE_GCC_ATOMIC_BUILTINS
-- Performing Test HAVE_GCC_ATOMIC_BUILTINS - Success
-- Looking for netinet/in6.h
-- Looking for netinet/in6.h - not found
-- Check size of struct sockaddr_in6
-- Check size of struct sockaddr_in6 - done
-- Check size of struct in6_addr
-- Check size of struct in6_addr - done
-- Performing Test HAVE_SOCKADDR_STORAGE_SS_FAMILY
-- Performing Test HAVE_SOCKADDR_STORAGE_SS_FAMILY - Success
-- Performing Test HAVE_SOCKADDR_IN_SIN_LEN
-- Performing Test HAVE_SOCKADDR_IN_SIN_LEN - Failed
-- Performing Test HAVE_SOCKADDR_IN6_SIN6_LEN
-- Performing Test HAVE_SOCKADDR_IN6_SIN6_LEN - Failed
-- Performing Test STRUCT_DIRENT_HAS_D_INO
-- Performing Test STRUCT_DIRENT_HAS_D_INO - Success
-- Performing Test STRUCT_DIRENT_HAS_D_NAMLEN
-- Performing Test STRUCT_DIRENT_HAS_D_NAMLEN - Failed
-- Performing Test HAVE_VISIBILITY_HIDDEN
-- Performing Test HAVE_VISIBILITY_HIDDEN - Success
-- HAVE_VISIBILITY_HIDDEN
-- HAVE_VISIBILITY_HIDDEN
-- HAVE_VISIBILITY_HIDDEN
-- Check size of mbstate_t
-- Check size of mbstate_t - done
-- Performing Test HAVE_LANGINFO_CODESET
-- Performing Test HAVE_LANGINFO_CODESET - Success
-- Looking for mbrlen
-- Looking for mbrlen - found
-- Looking for mbscmp
-- Looking for mbscmp - not found
-- Looking for mbsrtowcs
-- Looking for mbsrtowcs - found
-- Looking for wcrtomb
-- Looking for wcrtomb - found
-- Looking for mbrtowc
-- Looking for mbrtowc - found
-- Looking for wcscoll
-- Looking for wcscoll - found
-- Looking for wcsdup
-- Looking for wcsdup - found
-- Looking for wcwidth
-- Looking for wcwidth - found
-- Looking for wctype
-- Looking for wctype - found
-- Looking for iswlower
-- Looking for iswlower - found
-- Looking for iswupper
-- Looking for iswupper - found
-- Looking for towlower
-- Looking for towlower - found
-- Looking for towupper
-- Looking for towupper - found
-- Looking for iswctype
-- Looking for iswctype - found
-- Check size of wchar_t
-- Check size of wchar_t - done
-- Check size of wctype_t
-- Check size of wctype_t - done
-- Check size of wint_t
-- Check size of wint_t - done
-- Found Curses: /usr/lib64/libcurses.so 
-- Looking for tputs in /usr/lib64/libcurses.so
-- Looking for tputs in /usr/lib64/libcurses.so - found
-- Performing Test HAVE_DECL_TGOTO
-- Performing Test HAVE_DECL_TGOTO - Success
-- Looking for strvis
-- Looking for strvis - not found
-- Looking for strunvis
-- Looking for strunvis - not found
-- Performing Test HAVE_WVLA
-- Performing Test HAVE_WVLA - Failed
-- Using cmake version 3.3.0
-- Not building NDB
-- Looking for include file libaio.h
-- Looking for include file libaio.h - found
-- Looking for io_queue_init in aio
-- Looking for io_queue_init in aio - found
-- Looking for sched_getcpu
-- Looking for sched_getcpu - not found
-- Performing Test HAVE_IB_GCC_ATOMIC_BUILTINS
-- Performing Test HAVE_IB_GCC_ATOMIC_BUILTINS - Success
-- Performing Test HAVE_IB_GCC_ATOMIC_BUILTINS_BYTE
-- Performing Test HAVE_IB_GCC_ATOMIC_BUILTINS_BYTE - Success
-- Performing Test HAVE_IB_GCC_ATOMIC_BUILTINS_64
-- Performing Test HAVE_IB_GCC_ATOMIC_BUILTINS_64 - Success
-- Performing Test HAVE_IB_GCC_SYNC_SYNCHRONISE
-- Performing Test HAVE_IB_GCC_SYNC_SYNCHRONISE - Success
-- Performing Test HAVE_IB_GCC_ATOMIC_THREAD_FENCE
-- Performing Test HAVE_IB_GCC_ATOMIC_THREAD_FENCE - Failed
-- Performing Test HAVE_IB_ATOMIC_PTHREAD_T_GCC
-- Performing Test HAVE_IB_ATOMIC_PTHREAD_T_GCC - Success
-- Looking for asprintf
-- Looking for asprintf - found
-- Check size of pthread_t
-- Check size of pthread_t - done
-- Performing Test HAVE_PEERCRED
-- Performing Test HAVE_PEERCRED - Success
-- Library mysqlclient depends on OSLIBS -lpthread;m;rt;dl
-- Googlemock was not found. gtest-based unit tests will be disabled. You can run cmake . -DENABLE_DOWNLOADS=1 to automatically download and build required components from source.
-- If you are inside a firewall, you may need to use an http proxy: export http_proxy=http://example.com:80
-- Library mysqlserver depends on OSLIBS -lpthread;m;rt;crypt;dl;aio
-- CMAKE_BUILD_TYPE: RelWithDebInfo
-- COMPILE_DEFINITIONS: HAVE_CONFIG_H
-- CMAKE_C_FLAGS:  -Wall -Wextra -Wformat-security -Wwrite-strings -Wdeclaration-after-statement
-- CMAKE_CXX_FLAGS:  -Wall -Wextra -Wformat-security -Woverloaded-virtual -Wno-unused-parameter
-- CMAKE_C_FLAGS_RELWITHDEBINFO: -O3 -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DDBUG_OFF
-- CMAKE_CXX_FLAGS_RELWITHDEBINFO: -O3 -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DDBUG_OFF
-- Configuring done
-- Generating done
CMake Warning:
  Manually-specified variables were not used by the project:

    WITH_MEMORY_STORAGE_ENGINE  


-- Build files have been written to: /usr/src/redhat/SOURCES/mysql-5.6.26



6 安装

[root@server mysql-5.6.26]#
[root@server mysql-5.6.26]# make && make install
Scanning dependencies of target INFO_BIN
[  0%] Built target INFO_BIN
Scanning dependencies of target INFO_SRC
[  0%] Built target INFO_SRC
Scanning dependencies of target abi_check
[  0%] Built target abi_check
Scanning dependencies of target zlib
[  0%] Building C object zlib/CMakeFiles/zlib.dir/adler32.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/compress.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/crc32.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/deflate.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/gzio.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/infback.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/inffast.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/inflate.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/inftrees.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/trees.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/uncompr.c.o
[  0%] Building C object zlib/CMakeFiles/zlib.dir/zutil.c.o
[  1%] Linking C static library libzlib.a
[  1%] Built target zlib
Scanning dependencies of target yassl
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/buffer.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/cert_wrapper.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/crypto_wrapper.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/handshake.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/lock.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/log.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/socket_wrapper.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/ssl.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/timer.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/yassl_error.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/yassl_imp.cpp.o
[  1%] Building CXX object extra/yassl/CMakeFiles/yassl.dir/src/yassl_int.cpp.o
[  2%] Building C object extra/yassl/CMakeFiles/yassl.dir/__/__/client/get_password.c.o
[  2%] Linking CXX static library libyassl.a
[  2%] Built target yassl
Scanning dependencies of target taocrypt
[  2%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/aes.cpp.o
[  2%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/aestables.cpp.o
[  2%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/algebra.cpp.o
[  2%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/arc4.cpp.o
[  2%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/asn.cpp.o
[  2%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/coding.cpp.o
[  2%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/des.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/dh.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/dsa.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/file.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/hash.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/integer.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/md2.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/md4.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/md5.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/misc.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/random.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/ripemd.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/rsa.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/sha.cpp.o
[  3%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/rabbit.cpp.o
[  4%] Building CXX object extra/yassl/taocrypt/CMakeFiles/taocrypt.dir/src/hc128.cpp.o
[  4%] Linking CXX static library libtaocrypt.a
[  4%] Built target taocrypt
[  4%] Generating common.h
[  4%] Generating help.c
[  4%] Generating help.h
[  4%] Generating vi.h
[  4%] Generating emacs.h
[  4%] Generating fcns.c
[  4%] Generating fcns.h
Scanning dependencies of target edit
[  4%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/chared.c.o
[  4%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/chartype.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/el.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/eln.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/history.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/historyn.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/map.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/prompt.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/readline.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/search.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/tokenizer.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/tokenizern.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/vi.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/common.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/emacs.c.o
[  5%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/hist.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/keymacro.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/parse.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/read.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/refresh.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/sig.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/terminal.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/tty.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/filecomplete.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/help.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/fcns.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/np/vis.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/np/unvis.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/np/strlcpy.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/np/strlcat.c.o
[  6%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/np/fgetln.c.o
[  7%] Linking C static library libedit.a
[  7%] Built target edit
Scanning dependencies of target strings
[  7%] Building C object strings/CMakeFiles/strings.dir/bchange.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/bmove_upp.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-big5.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-bin.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-cp932.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-czech.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-euc_kr.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-eucjpms.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-extra.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-gb2312.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-gbk.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-latin1.c.o
[  7%] Building C object strings/CMakeFiles/strings.dir/ctype-mb.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype-simple.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype-sjis.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype-tis620.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype-uca.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype-ucs2.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype-ujis.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype-utf8.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype-win1250ch.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/ctype.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/decimal.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/dtoa.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/int2str.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/is_prefix.c.o
[  8%] Building C object strings/CMakeFiles/strings.dir/llstr.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/longlong2str.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/my_strtoll10.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/my_vsnprintf.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/str2int.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/str_alloc.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/strcend.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/strend.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/strfill.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/strmake.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/strmov.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/strnmov.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/strxmov.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/strxnmov.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/xml.c.o
[  9%] Building C object strings/CMakeFiles/strings.dir/my_strchr.c.o
[ 10%] Building C object strings/CMakeFiles/strings.dir/strcont.c.o
[ 10%] Building C object strings/CMakeFiles/strings.dir/strappend.c.o
[ 10%] Linking C static library libstrings.a
[ 10%] Built target strings
Scanning dependencies of target mysys
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/array.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/charset-def.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/charset.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/checksum.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/errors.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/hash.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/list.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/mf_cache.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/mf_dirname.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/mf_fn_ext.c.o
[ 10%] Building C object mysys/CMakeFiles/mysys.dir/mf_format.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_getdate.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_iocache.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_iocache2.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_keycache.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_keycaches.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_loadpath.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_pack.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_path.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_qsort.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_qsort2.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_radix.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_same.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_sort.c.o
[ 11%] Building C object mysys/CMakeFiles/mysys.dir/mf_soundex.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/mf_arr_appstr.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/mf_tempdir.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/mf_tempfile.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/mf_unixpath.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/mf_wcomp.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/mulalloc.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_access.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_alloc.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_bit.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_bitmap.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_chsize.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_compress.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_copy.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_create.c.o
[ 12%] Building C object mysys/CMakeFiles/mysys.dir/my_delete.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_div.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_error.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_file.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_fopen.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_fstream.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_gethwaddr.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_getsystime.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_getwd.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_compare.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_init.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_lib.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_lock.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_malloc.c.o
[ 13%] Building C object mysys/CMakeFiles/mysys.dir/my_mess.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_mkdir.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_mmap.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_once.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_open.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_pread.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_pthread.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_quick.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_read.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_redel.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_rename.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_seek.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_sleep.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_static.c.o
[ 14%] Building C object mysys/CMakeFiles/mysys.dir/my_symlink.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/my_symlink2.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/my_sync.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/my_thr_init.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/my_write.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/ptr_cmp.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/queues.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/stacktrace.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/string.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/thr_alarm.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/thr_lock.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/thr_mutex.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/thr_rwlock.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/tree.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/typelib.c.o
[ 15%] Building C object mysys/CMakeFiles/mysys.dir/base64.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/my_memmem.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/my_getpagesize.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/lf_alloc-pin.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/lf_dynarray.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/lf_hash.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/my_atomic.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/my_getncpus.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/my_rdtsc.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/waiting_threads.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/psi_noop.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/my_alarm.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/my_largepage.c.o
[ 16%] Building C object mysys/CMakeFiles/mysys.dir/my_lockmem.c.o
[ 16%] Linking C static library libmysys.a
[ 16%] Built target mysys
Scanning dependencies of target dbug
[ 16%] Building C object dbug/CMakeFiles/dbug.dir/dbug.c.o
[ 16%] Linking C static library libdbug.a
[ 16%] Built target dbug
Scanning dependencies of target mysys_ssl
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/crypt_genhash_impl.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_default.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_getopt.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_aes.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_sha1.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_sha2.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_md5.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_rnd.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_murmur3.cc.o
[ 17%] Building CXX object mysys_ssl/CMakeFiles/mysys_ssl.dir/my_aes_yassl.cc.o
[ 17%] Linking CXX static library libmysys_ssl.a
[ 17%] Built target mysys_ssl
Scanning dependencies of target comp_err
[ 17%] Building C object extra/CMakeFiles/comp_err.dir/comp_err.c.o
[ 17%] Linking CXX executable comp_err
[ 17%] Built target comp_err
Scanning dependencies of target GenError
[ 17%] Generating ../include/mysqld_error.h, ../sql/share/english/errmsg.sys
[ 17%] Built target GenError
Scanning dependencies of target archive
[ 17%] Building C object storage/archive/CMakeFiles/archive.dir/azio.c.o
[ 17%] Building CXX object storage/archive/CMakeFiles/archive.dir/ha_archive.cc.o
[ 17%] Linking CXX static library libarchive.a
[ 17%] Built target archive
Scanning dependencies of target archive_embedded
[ 17%] Building C object storage/archive/CMakeFiles/archive_embedded.dir/azio.c.o
[ 17%] Building CXX object storage/archive/CMakeFiles/archive_embedded.dir/ha_archive.cc.o
[ 17%] Linking CXX static library libarchive_embedded.a
[ 17%] Built target archive_embedded
Scanning dependencies of target csv
[ 17%] Building CXX object storage/csv/CMakeFiles/csv.dir/ha_tina.cc.o
[ 17%] Building CXX object storage/csv/CMakeFiles/csv.dir/transparent_file.cc.o
[ 17%] Linking CXX static library libcsv.a
[ 17%] Built target csv
Scanning dependencies of target csv_embedded
[ 17%] Building CXX object storage/csv/CMakeFiles/csv_embedded.dir/ha_tina.cc.o
[ 17%] Building CXX object storage/csv/CMakeFiles/csv_embedded.dir/transparent_file.cc.o
[ 18%] Linking CXX static library libcsv_embedded.a
[ 18%] Built target csv_embedded
Scanning dependencies of target federated
[ 18%] Building CXX object storage/federated/CMakeFiles/federated.dir/ha_federated.cc.o
[ 18%] Linking CXX static library libfederated.a
[ 18%] Built target federated
Scanning dependencies of target federated_embedded
[ 18%] Building CXX object storage/federated/CMakeFiles/federated_embedded.dir/ha_federated.cc.o
[ 18%] Linking CXX static library libfederated_embedded.a
[ 18%] Built target federated_embedded
Scanning dependencies of target myisam
[ 18%] Building C object storage/myisam/CMakeFiles/myisam.dir/ft_boolean_search.c.o
[ 18%] Building C object storage/myisam/CMakeFiles/myisam.dir/ft_nlq_search.c.o
[ 18%] Building C object storage/myisam/CMakeFiles/myisam.dir/ft_parser.c.o
[ 18%] Building C object storage/myisam/CMakeFiles/myisam.dir/ft_static.c.o
[ 19%] Building CXX object storage/myisam/CMakeFiles/myisam.dir/ha_myisam.cc.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/ft_stopwords.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/ft_update.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_cache.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_changed.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_check.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_checksum.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_close.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_create.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_dbug.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_delete.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_delete_all.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_delete_table.c.o
[ 19%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_dynrec.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_extra.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_info.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_key.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_keycache.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_locking.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_log.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_open.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_packrec.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_page.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_panic.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_preload.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_range.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rename.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rfirst.c.o
[ 20%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rlast.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rnext.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rnext_same.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rprev.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rrnd.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rsame.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rsamepos.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_scan.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_search.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_static.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_statrec.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_unique.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_update.c.o
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_write.c.o
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/myisam/mi_write.c: In function 鈥榑mi_split_page鈥

                                                                                                /usr/src/redhat/SOURCES/mysql-5.6.26/storage/myisam/mi_write.c:594: warning: 鈥榓fter_key鈥may be used uninitialized in this function
[ 21%] Building C object storage/myisam/CMakeFiles/myisam.dir/rt_index.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam.dir/rt_key.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam.dir/rt_mbr.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam.dir/rt_split.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam.dir/sort.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam.dir/sp_key.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam.dir/mi_rkey.c.o
[ 22%] Linking CXX static library libmyisam.a
[ 22%] Built target myisam
Scanning dependencies of target myisam_embedded
[ 22%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/ft_boolean_search.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/ft_nlq_search.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/ft_parser.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/ft_static.c.o
[ 22%] Building CXX object storage/myisam/CMakeFiles/myisam_embedded.dir/ha_myisam.cc.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/ft_stopwords.c.o
[ 22%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/ft_update.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_cache.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_changed.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_check.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_checksum.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_close.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_create.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_dbug.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_delete.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_delete_all.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_delete_table.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_dynrec.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_extra.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_info.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_key.c.o
[ 23%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_keycache.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_locking.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_log.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_open.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_packrec.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_page.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_panic.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_preload.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_range.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rename.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rfirst.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rlast.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rnext.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rnext_same.c.o
[ 24%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rprev.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rrnd.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rsame.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rsamepos.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_scan.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_search.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_static.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_statrec.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_unique.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_update.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_write.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/rt_index.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/rt_key.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/rt_mbr.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/rt_split.c.o
[ 25%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/sort.c.o
[ 26%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/sp_key.c.o
[ 26%] Building C object storage/myisam/CMakeFiles/myisam_embedded.dir/mi_rkey.c.o
[ 26%] Linking CXX static library libmyisam_embedded.a
[ 26%] Built target myisam_embedded
Scanning dependencies of target myisam_ftdump
[ 26%] Building C object storage/myisam/CMakeFiles/myisam_ftdump.dir/myisam_ftdump.c.o
[ 26%] Linking CXX executable myisam_ftdump
[ 26%] Built target myisam_ftdump
Scanning dependencies of target myisamchk
[ 26%] Building C object storage/myisam/CMakeFiles/myisamchk.dir/myisamchk.c.o
[ 26%] Linking CXX executable myisamchk
[ 26%] Built target myisamchk
Scanning dependencies of target myisamlog
[ 26%] Building C object storage/myisam/CMakeFiles/myisamlog.dir/myisamlog.c.o
[ 26%] Linking CXX executable myisamlog
[ 26%] Built target myisamlog
Scanning dependencies of target myisampack
[ 27%] Building C object storage/myisam/CMakeFiles/myisampack.dir/myisampack.c.o
[ 27%] Linking CXX executable myisampack
[ 27%] Built target myisampack
Scanning dependencies of target blackhole
[ 28%] Building CXX object storage/blackhole/CMakeFiles/blackhole.dir/ha_blackhole.cc.o
[ 28%] Linking CXX static library libblackhole.a
[ 28%] Built target blackhole
Scanning dependencies of target blackhole_embedded
[ 28%] Building CXX object storage/blackhole/CMakeFiles/blackhole_embedded.dir/ha_blackhole.cc.o
[ 28%] Linking CXX static library libblackhole_embedded.a
[ 28%] Built target blackhole_embedded
Scanning dependencies of target myisammrg
[ 28%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_close.c.o
[ 28%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_create.c.o
[ 28%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_delete.c.o
[ 28%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_extra.c.o
[ 28%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_info.c.o
[ 29%] Building CXX object storage/myisammrg/CMakeFiles/myisammrg.dir/ha_myisammrg.cc.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_locking.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_open.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_panic.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_queue.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_range.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_rfirst.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_rkey.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_rlast.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_rnext.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_rnext_same.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_rprev.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_rrnd.c.o
[ 29%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_rsame.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_static.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_update.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_write.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg.dir/myrg_records.c.o
[ 30%] Linking CXX static library libmyisammrg.a
[ 30%] Built target myisammrg
Scanning dependencies of target myisammrg_embedded
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_close.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_create.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_delete.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_extra.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_info.c.o
[ 30%] Building CXX object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/ha_myisammrg.cc.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_locking.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_open.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_panic.c.o
[ 30%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_queue.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_range.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_rfirst.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_rkey.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_rlast.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_rnext.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_rnext_same.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_rprev.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_rrnd.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_rsame.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_static.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_update.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_write.c.o
[ 31%] Building C object storage/myisammrg/CMakeFiles/myisammrg_embedded.dir/myrg_records.c.o
[ 31%] Linking CXX static library libmyisammrg_embedded.a
[ 31%] Built target myisammrg_embedded
Scanning dependencies of target perfschema
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/cursor_by_account.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/cursor_by_host.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/cursor_by_thread.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/cursor_by_user.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/ha_perfschema.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_account.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_atomic.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_autosize.cc.o
[ 31%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_check.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_column_values.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_con_slice.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_defaults.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_digest.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_engine_table.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_events_stages.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_events_statements.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_events_waits.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_global.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_host.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_instr.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_instr_class.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_server.cc.o
[ 32%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_setup_actor.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_setup_object.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_timer.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_user.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/pfs_visitor.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_accounts.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_all_instr.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esgs_by_account_by_event_name.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esgs_by_host_by_event_name.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esgs_by_thread_by_event_name.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esgs_by_user_by_event_name.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esgs_global_by_event_name.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esms_by_account_by_event_name.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esms_by_host_by_event_name.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esms_by_digest.cc.o
[ 33%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esms_by_thread_by_event_name.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esms_by_user_by_event_name.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_esms_global_by_event_name.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_events_stages.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_events_statements.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_events_waits.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_events_waits_summary.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_ews_by_account_by_event_name.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_ews_by_host_by_event_name.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_ews_by_thread_by_event_name.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_ews_by_user_by_event_name.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_ews_global_by_event_name.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_file_instances.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_file_summary_by_instance.cc.o
[ 34%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_file_summary_by_event_name.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_socket_instances.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_socket_summary_by_instance.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_socket_summary_by_event_name.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_helper.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_host_cache.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_hosts.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_os_global_by_type.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_performance_timers.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_setup_actors.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_setup_consumers.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_setup_instruments.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_setup_objects.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_setup_timers.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_sync_instances.cc.o
[ 35%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_threads.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_tiws_by_index_usage.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_tiws_by_table.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_tlws_by_table.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_users.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/cursor_by_thread_connect_attr.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_session_connect.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_session_connect_attrs.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema.dir/table_session_account_connect_attrs.cc.o
[ 36%] Linking CXX static library libperfschema.a
[ 36%] Built target perfschema
Scanning dependencies of target perfschema_embedded
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/cursor_by_account.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/cursor_by_host.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/cursor_by_thread.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/cursor_by_user.cc.o
[ 36%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/ha_perfschema.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_account.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_atomic.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_autosize.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_check.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_column_values.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_con_slice.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_defaults.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_digest.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_engine_table.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_events_stages.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_events_statements.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_events_waits.cc.o
[ 37%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_global.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_host.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_instr.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_instr_class.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_server.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_setup_actor.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_setup_object.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_timer.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_user.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/pfs_visitor.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_accounts.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_all_instr.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esgs_by_account_by_event_name.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esgs_by_host_by_event_name.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esgs_by_thread_by_event_name.cc.o
[ 38%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esgs_by_user_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esgs_global_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esms_by_account_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esms_by_host_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esms_by_digest.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esms_by_thread_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esms_by_user_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_esms_global_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_events_stages.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_events_statements.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_events_waits.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_events_waits_summary.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_ews_by_account_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_ews_by_host_by_event_name.cc.o
[ 39%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_ews_by_thread_by_event_name.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_ews_by_user_by_event_name.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_ews_global_by_event_name.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_file_instances.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_file_summary_by_instance.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_file_summary_by_event_name.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_socket_instances.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_socket_summary_by_instance.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_socket_summary_by_event_name.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_helper.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_host_cache.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_hosts.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_os_global_by_type.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_performance_timers.cc.o
[ 40%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_setup_actors.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_setup_consumers.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_setup_instruments.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_setup_objects.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_setup_timers.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_sync_instances.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_threads.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_tiws_by_index_usage.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_tiws_by_table.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_tlws_by_table.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_users.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/cursor_by_thread_connect_attr.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_session_connect.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_session_connect_attrs.cc.o
[ 41%] Building CXX object storage/perfschema/CMakeFiles/perfschema_embedded.dir/table_session_account_connect_attrs.cc.o
[ 41%] Linking CXX static library libperfschema_embedded.a
[ 41%] Built target perfschema_embedded
Scanning dependencies of target mytap
[ 41%] Building C object unittest/mytap/CMakeFiles/mytap.dir/tap.c.o
[ 41%] Linking C static library libmytap.a
[ 41%] Built target mytap
Scanning dependencies of target pfs_server_stubs
[ 41%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_server_stubs.dir/pfs_server_stubs.cc.o
[ 41%] Linking CXX static library libpfs_server_stubs.a
[ 41%] Built target pfs_server_stubs
Scanning dependencies of target pfs-t
[ 41%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs-t.dir/pfs-t.cc.o
[ 41%] Linking CXX executable pfs-t
[ 41%] Built target pfs-t
Scanning dependencies of target pfs_account-oom-t
[ 41%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_account-oom-t.dir/pfs_account-oom-t.cc.o
[ 41%] Linking CXX executable pfs_account-oom-t
[ 41%] Built target pfs_account-oom-t
Scanning dependencies of target gen_lex_hash
[ 41%] Building CXX object sql/CMakeFiles/gen_lex_hash.dir/gen_lex_hash.cc.o
[ 41%] Linking CXX executable gen_lex_hash
[ 41%] Built target gen_lex_hash
Scanning dependencies of target GenServerSource
[ 41%] Generating lex_hash.h
[ 41%] Built target GenServerSource
Scanning dependencies of target heap
[ 41%] Building C object storage/heap/CMakeFiles/heap.dir/_check.c.o
[ 41%] Building C object storage/heap/CMakeFiles/heap.dir/_rectest.c.o
[ 41%] Building C object storage/heap/CMakeFiles/heap.dir/hp_block.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_clear.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_close.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_create.c.o
[ 42%] Building CXX object storage/heap/CMakeFiles/heap.dir/ha_heap.cc.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_delete.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_extra.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_hash.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_info.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_open.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_panic.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_rename.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_rfirst.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_rkey.c.o
[ 42%] Building C object storage/heap/CMakeFiles/heap.dir/hp_rlast.c.o
[ 43%] Building C object storage/heap/CMakeFiles/heap.dir/hp_rnext.c.o
[ 43%] Building C object storage/heap/CMakeFiles/heap.dir/hp_rprev.c.o
[ 43%] Building C object storage/heap/CMakeFiles/heap.dir/hp_rrnd.c.o
[ 43%] Building C object storage/heap/CMakeFiles/heap.dir/hp_rsame.c.o
[ 43%] Building C object storage/heap/CMakeFiles/heap.dir/hp_scan.c.o
[ 43%] Building C object storage/heap/CMakeFiles/heap.dir/hp_static.c.o
[ 43%] Building C object storage/heap/CMakeFiles/heap.dir/hp_update.c.o
[ 43%] Building C object storage/heap/CMakeFiles/heap.dir/hp_write.c.o
[ 43%] Linking CXX static library libheap.a
[ 43%] Built target heap
Scanning dependencies of target innobase
[ 43%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/api/api0api.cc.o
[ 43%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/api/api0misc.cc.o
[ 43%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/btr/btr0btr.cc.o
[ 43%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/btr/btr0cur.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/btr/btr0pcur.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/btr/btr0sea.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/buf/buf0buddy.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/buf/buf0buf.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/buf/buf0dblwr.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/buf/buf0checksum.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/buf/buf0dump.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/buf/buf0flu.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/buf/buf0lru.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/buf/buf0rea.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/data/data0data.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/data/data0type.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/dict/dict0boot.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/dict/dict0crea.cc.o
[ 44%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/dict/dict0dict.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/dict/dict0load.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/dict/dict0mem.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/dict/dict0stats.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/dict/dict0stats_bg.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/dyn/dyn0dyn.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/eval/eval0eval.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/eval/eval0proc.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fil/fil0fil.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fsp/fsp0fsp.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fut/fut0fut.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fut/fut0lst.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ha/ha0ha.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ha/ha0storage.cc.o
[ 45%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ha/hash0hash.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0fts.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0ast.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0blex.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0config.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0opt.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0pars.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0que.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0sql.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/fts/fts0tlex.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/handler/ha_innodb.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/handler/handler0alter.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/handler/i_s.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ibuf/ibuf0ibuf.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/lock/lock0iter.cc.o
[ 46%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/lock/lock0lock.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/lock/lock0wait.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/log/log0log.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/log/log0recv.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/mach/mach0data.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/mem/mem0mem.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/mem/mem0pool.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/mtr/mtr0log.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/mtr/mtr0mtr.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/os/os0file.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/os/os0proc.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/os/os0sync.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/os/os0thread.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/page/page0cur.cc.o
[ 47%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/page/page0page.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/page/page0zip.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/pars/lexyy.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/pars/pars0grm.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/pars/pars0opt.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/pars/pars0pars.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/pars/pars0sym.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/que/que0que.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/read/read0read.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/rem/rem0cmp.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/rem/rem0rec.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0ext.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0ftsort.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0import.cc.o
[ 48%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0ins.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0merge.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0mysql.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0log.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0purge.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0row.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0sel.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0uins.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0umod.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0undo.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0upd.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0quiesce.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/row/row0vers.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/srv/srv0conc.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/srv/srv0mon.cc.o
[ 49%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/srv/srv0srv.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/srv/srv0start.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/sync/sync0arr.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/sync/sync0rw.cc.o
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic: In function 鈥榲oid rw_lock_s_lock_spin(rw_lock_t*, ulint, const char*, ulint)鈥

                                                                                                                                                            /usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic: In function 鈥榲oid rw_lock_x_lock_func(rw_lock_t*, ulint, const char*, ulint)鈥

                                                                                                                                                            /usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/sync/sync0sync.cc.o
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic: In function 鈥榲oid mutex_spin_wait(ib_mutex_t*, const char*, ulint)鈥

                                                                                                                                                  /usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/trx/trx0i_s.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/trx/trx0purge.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/trx/trx0rec.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/trx/trx0roll.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/trx/trx0rseg.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/trx/trx0sys.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/trx/trx0trx.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/trx/trx0undo.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/usr/usr0sess.cc.o
[ 50%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0bh.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0byte.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0crc32.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0dbg.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0list.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0mem.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0rbt.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0rnd.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0ut.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0vec.cc.o
[ 51%] Building CXX object storage/innobase/CMakeFiles/innobase.dir/ut/ut0wqueue.cc.o
[ 51%] Linking CXX static library libinnobase.a
[ 51%] Built target innobase
Scanning dependencies of target vio
[ 51%] Building C object vio/CMakeFiles/vio.dir/vio.c.o
[ 51%] Building C object vio/CMakeFiles/vio.dir/viosocket.c.o
[ 51%] Building C object vio/CMakeFiles/vio.dir/viossl.c.o
[ 51%] Building C object vio/CMakeFiles/vio.dir/viopipe.c.o
[ 51%] Building C object vio/CMakeFiles/vio.dir/vioshm.c.o
[ 52%] Building C object vio/CMakeFiles/vio.dir/viosslfactories.c.o
[ 52%] Linking C static library libvio.a
[ 52%] Built target vio
Scanning dependencies of target regex
[ 52%] Building C object regex/CMakeFiles/regex.dir/regcomp.c.o
[ 52%] Building C object regex/CMakeFiles/regex.dir/regerror.c.o
[ 52%] Building C object regex/CMakeFiles/regex.dir/regexec.c.o
[ 52%] Building C object regex/CMakeFiles/regex.dir/regfree.c.o
[ 52%] Building C object regex/CMakeFiles/regex.dir/reginit.c.o
[ 53%] Linking C static library libregex.a
[ 53%] Built target regex
Scanning dependencies of target gen_lex_token
[ 53%] Building CXX object sql/CMakeFiles/gen_lex_token.dir/gen_lex_token.cc.o
[ 53%] Linking CXX executable gen_lex_token
[ 53%] Built target gen_lex_token
Scanning dependencies of target partition
[ 54%] Building CXX object sql/CMakeFiles/partition.dir/ha_partition.cc.o
[ 54%] Linking CXX static library libpartition.a
[ 54%] Built target partition
Scanning dependencies of target GenDigestServerSource
[ 54%] Generating lex_token.h
[ 54%] Built target GenDigestServerSource
Scanning dependencies of target sql
[ 54%] Building CXX object sql/CMakeFiles/sql.dir/sql_yacc.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/sql_builtin.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/abstract_query_plan.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/datadict.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/debug_sync.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/derror.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/des_key_file.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/discover.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/field.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/field_conv.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/filesort.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/filesort_utils.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/gcalc_slicescan.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/gcalc_tools.cc.o
[ 55%] Building CXX object sql/CMakeFiles/sql.dir/gstream.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/handler.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/hostname.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/init.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_buff.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_cmpfunc.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_create.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_func.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_geofunc.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_row.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_strfunc.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_subselect.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_sum.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_timefunc.cc.o
[ 56%] Building CXX object sql/CMakeFiles/sql.dir/item_xmlfunc.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/item_inetfunc.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/key.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/keycaches.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/lock.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/log.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/mdl.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/mf_iocache.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/my_decimal.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/net_serv.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/opt_explain.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/opt_explain_traditional.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/opt_explain_json.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/opt_range.cc.o
[ 57%] Building CXX object sql/CMakeFiles/sql.dir/opt_sum.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/opt_trace.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/opt_trace2server.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/parse_file.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/partition_info.cc.o
[ 58%] Building C object sql/CMakeFiles/sql.dir/password.c.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/procedure.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/protocol.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/records.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/rpl_handler.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/scheduler.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/set_var.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/signal_handler.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/sp.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/sp_cache.cc.o
[ 58%] Building CXX object sql/CMakeFiles/sql.dir/sp_head.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sp_instr.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sp_pcontext.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sp_rcontext.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/spatial.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/string_service.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_acl.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_admin.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_alloc_error_handler.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_alter.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_analyse.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_audit.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_base.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_bootstrap.cc.o
[ 59%] Building CXX object sql/CMakeFiles/sql.dir/sql_cache.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_class.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_connect.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_crypt.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_cursor.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_data_change.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_db.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_delete.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_derived.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_digest.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_do.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_error.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_executor.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_get_diagnostics.cc.o
[ 60%] Building CXX object sql/CMakeFiles/sql.dir/sql_handler.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_help.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_insert.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_join_buffer.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_lex.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_list.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_load.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_locale.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_manager.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_optimizer.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_parse.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_partition.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_partition_admin.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_planner.cc.o
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc: In member function 鈥榲oid Optimize_table_order::best_access_path(JOIN_TAB*, table_map, uint, bool, double, POSITION*, POSITION*)鈥

                                                                                                                                                                                             /usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::quick_max_loose_keypart鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::best_loose_scan_key鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::best_loose_scan_records鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::best_max_loose_keypart鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::best_loose_scan_start_key鈥may be used uninitialized in this function
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_plugin.cc.o
[ 61%] Building CXX object sql/CMakeFiles/sql.dir/sql_prepare.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_profile.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_reload.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_rename.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_resolver.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_rewrite.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_select.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_servers.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_show.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_signal.cc.o
[ 62%] Building C object sql/CMakeFiles/sql.dir/sql_state.c.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_string.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_table.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_tablespace.cc.o
[ 62%] Building CXX object sql/CMakeFiles/sql.dir/sql_test.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sql_time.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sql_tmp_table.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sql_trigger.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sql_truncate.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sql_udf.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sql_union.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sql_update.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sql_view.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/strfunc.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/sys_vars.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/table.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/table_cache.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/thr_malloc.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/transaction.cc.o
[ 63%] Building CXX object sql/CMakeFiles/sql.dir/tztime.cc.o
[ 64%] Building CXX object sql/CMakeFiles/sql.dir/uniques.cc.o
[ 64%] Building CXX object sql/CMakeFiles/sql.dir/unireg.cc.o
[ 64%] Building C object sql/CMakeFiles/sql.dir/__/libmysql/errmsg.c.o
[ 64%] Building C object sql/CMakeFiles/sql.dir/__/sql-common/client.c.o
[ 64%] Building C object sql/CMakeFiles/sql.dir/__/sql-common/client_plugin.c.o
[ 64%] Building C object sql/CMakeFiles/sql.dir/__/sql-common/my_time.c.o
[ 64%] Building C object sql/CMakeFiles/sql.dir/__/sql-common/my_user.c.o
[ 64%] Building C object sql/CMakeFiles/sql.dir/__/sql-common/pack.c.o
[ 64%] Building CXX object sql/CMakeFiles/sql.dir/__/sql-common/client_authentication.cc.o
[ 64%] Building CXX object sql/CMakeFiles/sql.dir/event_data_objects.cc.o
[ 64%] Building CXX object sql/CMakeFiles/sql.dir/event_db_repository.cc.o
[ 64%] Building CXX object sql/CMakeFiles/sql.dir/event_parse_data.cc.o
[ 64%] Building CXX object sql/CMakeFiles/sql.dir/event_queue.cc.o
[ 64%] Building CXX object sql/CMakeFiles/sql.dir/event_scheduler.cc.o
[ 65%] Building CXX object sql/CMakeFiles/sql.dir/events.cc.o
[ 65%] Building CXX object sql/CMakeFiles/sql.dir/mysqld.cc.o
[ 65%] Building CXX object sql/CMakeFiles/sql.dir/sql_client.cc.o
[ 65%] Linking CXX static library libsql.a
[ 65%] Built target sql
Scanning dependencies of target binlog
[ 65%] Building CXX object sql/CMakeFiles/binlog.dir/uuid.cc.o
[ 65%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_misc.cc.o
[ 65%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_sid_map.cc.o
[ 65%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_set.cc.o
[ 65%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_specification.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_state.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_owned.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_cache.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_execution.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_gtid_mutex_cond_array.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/log_event.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/log_event_old.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/binlog.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/sql_binlog.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_filter.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_record.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_record_old.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_utility.cc.o
[ 66%] Building CXX object sql/CMakeFiles/binlog.dir/rpl_injector.cc.o
[ 66%] Linking CXX static library libbinlog.a
[ 66%] Built target binlog
Scanning dependencies of target rpl
[ 66%] Building CXX object sql/CMakeFiles/rpl.dir/rpl_handler.cc.o
[ 66%] Building CXX object sql/CMakeFiles/rpl.dir/rpl_tblmap.cc.o
[ 66%] Linking CXX static library librpl.a
[ 66%] Built target rpl
Scanning dependencies of target master
[ 66%] Building CXX object sql/CMakeFiles/master.dir/rpl_master.cc.o
[ 66%] Linking CXX static library libmaster.a
[ 66%] Built target master
Scanning dependencies of target slave
[ 66%] Building CXX object sql/CMakeFiles/slave.dir/rpl_slave.cc.o
[ 66%] Building CXX object sql/CMakeFiles/slave.dir/rpl_reporting.cc.o
[ 66%] Building CXX object sql/CMakeFiles/slave.dir/rpl_mi.cc.o
[ 66%] Building CXX object sql/CMakeFiles/slave.dir/rpl_rli.cc.o
[ 66%] Building CXX object sql/CMakeFiles/slave.dir/rpl_info_handler.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/rpl_info_file.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/rpl_info_table.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/rpl_info_values.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/rpl_info.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/rpl_info_factory.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/rpl_info_table_access.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/dynamic_ids.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/rpl_rli_pdb.cc.o
[ 67%] Building CXX object sql/CMakeFiles/slave.dir/rpl_info_dummy.cc.o
[ 67%] Linking CXX static library libslave.a
[ 67%] Built target slave
Scanning dependencies of target pfs_connect_attr-t
[ 67%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_connect_attr-t.dir/pfs_connect_attr-t.cc.o
[ 67%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_connect_attr-t.dir/__/__/__/sql/sql_builtin.cc.o
[ 67%] Building C object storage/perfschema/unittest/CMakeFiles/pfs_connect_attr-t.dir/__/__/__/mysys/string.c.o
[ 67%] Linking CXX executable pfs_connect_attr-t
[ 67%] Built target pfs_connect_attr-t
Scanning dependencies of target pfs_host-oom-t
[ 67%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_host-oom-t.dir/pfs_host-oom-t.cc.o
[ 67%] Linking CXX executable pfs_host-oom-t
[ 67%] Built target pfs_host-oom-t
Scanning dependencies of target pfs_instr-oom-t
[ 67%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_instr-oom-t.dir/pfs_instr-oom-t.cc.o
[ 67%] Linking CXX executable pfs_instr-oom-t
[ 67%] Built target pfs_instr-oom-t
Scanning dependencies of target pfs_instr-t
[ 68%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_instr-t.dir/pfs_instr-t.cc.o
[ 68%] Linking CXX executable pfs_instr-t
[ 68%] Built target pfs_instr-t
Scanning dependencies of target pfs_instr_class-oom-t
[ 68%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_instr_class-oom-t.dir/pfs_instr_class-oom-t.cc.o
[ 68%] Linking CXX executable pfs_instr_class-oom-t
[ 68%] Built target pfs_instr_class-oom-t
Scanning dependencies of target pfs_instr_class-t
[ 68%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_instr_class-t.dir/pfs_instr_class-t.cc.o
[ 68%] Linking CXX executable pfs_instr_class-t
[ 68%] Built target pfs_instr_class-t
Scanning dependencies of target pfs_misc-t
[ 68%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_misc-t.dir/pfs_misc-t.cc.o
[ 68%] Linking CXX executable pfs_misc-t
[ 68%] Built target pfs_misc-t
Scanning dependencies of target pfs_user-oom-t
[ 68%] Building CXX object storage/perfschema/unittest/CMakeFiles/pfs_user-oom-t.dir/pfs_user-oom-t.cc.o
[ 68%] Linking CXX executable pfs_user-oom-t
[ 68%] Built target pfs_user-oom-t
Scanning dependencies of target heap_embedded
[ 68%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/_check.c.o
[ 68%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/_rectest.c.o
[ 68%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_block.c.o
[ 68%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_clear.c.o
[ 68%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_close.c.o
[ 68%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_create.c.o
[ 69%] Building CXX object storage/heap/CMakeFiles/heap_embedded.dir/ha_heap.cc.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_delete.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_extra.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_hash.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_info.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_open.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_panic.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_rename.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_rfirst.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_rkey.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_rlast.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_rnext.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_rprev.c.o
[ 69%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_rrnd.c.o
[ 70%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_rsame.c.o
[ 70%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_scan.c.o
[ 70%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_static.c.o
[ 70%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_update.c.o
[ 70%] Building C object storage/heap/CMakeFiles/heap_embedded.dir/hp_write.c.o
[ 70%] Linking CXX static library libheap_embedded.a
[ 70%] Built target heap_embedded
Scanning dependencies of target hp_test1
[ 70%] Building C object storage/heap/CMakeFiles/hp_test1.dir/hp_test1.c.o
[ 70%] Linking CXX executable hp_test1
[ 70%] Built target hp_test1
Scanning dependencies of target hp_test2
[ 70%] Building C object storage/heap/CMakeFiles/hp_test2.dir/hp_test2.c.o
[ 70%] Linking CXX executable hp_test2
[ 70%] Built target hp_test2
Scanning dependencies of target innobase_embedded
[ 70%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/api/api0api.cc.o
[ 70%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/api/api0misc.cc.o
[ 70%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/btr/btr0btr.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/btr/btr0cur.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/btr/btr0pcur.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/btr/btr0sea.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/buf/buf0buddy.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/buf/buf0buf.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/buf/buf0dblwr.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/buf/buf0checksum.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/buf/buf0dump.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/buf/buf0flu.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/buf/buf0lru.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/buf/buf0rea.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/data/data0data.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/data/data0type.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/dict/dict0boot.cc.o
[ 71%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/dict/dict0crea.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/dict/dict0dict.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/dict/dict0load.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/dict/dict0mem.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/dict/dict0stats.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/dict/dict0stats_bg.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/dyn/dyn0dyn.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/eval/eval0eval.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/eval/eval0proc.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fil/fil0fil.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fsp/fsp0fsp.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fut/fut0fut.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fut/fut0lst.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ha/ha0ha.cc.o
[ 72%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ha/ha0storage.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ha/hash0hash.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0fts.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0ast.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0blex.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0config.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0opt.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0pars.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0que.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0sql.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/fts/fts0tlex.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/handler/ha_innodb.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/handler/handler0alter.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/handler/i_s.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ibuf/ibuf0ibuf.cc.o
[ 73%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/lock/lock0iter.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/lock/lock0lock.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/lock/lock0wait.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/log/log0log.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/log/log0recv.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/mach/mach0data.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/mem/mem0mem.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/mem/mem0pool.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/mtr/mtr0log.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/mtr/mtr0mtr.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/os/os0file.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/os/os0proc.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/os/os0sync.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/os/os0thread.cc.o
[ 74%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/page/page0cur.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/page/page0page.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/page/page0zip.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/pars/lexyy.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/pars/pars0grm.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/pars/pars0opt.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/pars/pars0pars.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/pars/pars0sym.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/que/que0que.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/read/read0read.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/rem/rem0cmp.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/rem/rem0rec.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0ext.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0ftsort.cc.o
[ 75%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0import.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0ins.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0merge.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0mysql.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0log.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0purge.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0row.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0sel.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0uins.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0umod.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0undo.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0upd.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0quiesce.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/row/row0vers.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/srv/srv0conc.cc.o
[ 76%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/srv/srv0mon.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/srv/srv0srv.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/srv/srv0start.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/sync/sync0arr.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/sync/sync0rw.cc.o
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic: In function 鈥榲oid rw_lock_s_lock_spin(rw_lock_t*, ulint, const char*, ulint)鈥

                                                                                                                                                            /usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic: In function 鈥榲oid rw_lock_x_lock_func(rw_lock_t*, ulint, const char*, ulint)鈥

                                                                                                                                                            /usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/sync/sync0sync.cc.o
/usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic: In function 鈥榲oid mutex_spin_wait(ib_mutex_t*, const char*, ulint)鈥

                                                                                                                                                  /usr/src/redhat/SOURCES/mysql-5.6.26/storage/innobase/include/sync0arr.ic:48: warning: 鈥榮ync_arr鈥may be used uninitialized in this function
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/trx/trx0i_s.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/trx/trx0purge.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/trx/trx0rec.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/trx/trx0roll.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/trx/trx0rseg.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/trx/trx0sys.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/trx/trx0trx.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/trx/trx0undo.cc.o
[ 77%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/usr/usr0sess.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0bh.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0byte.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0crc32.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0dbg.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0list.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0mem.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0rbt.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0rnd.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0ut.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0vec.cc.o
[ 78%] Building CXX object storage/innobase/CMakeFiles/innobase_embedded.dir/ut/ut0wqueue.cc.o
[ 78%] Linking CXX static library libinnobase_embedded.a
[ 78%] Built target innobase_embedded
Scanning dependencies of target mysqlservices
[ 78%] Building C object libservices/CMakeFiles/mysqlservices.dir/my_snprintf_service.c.o
[ 78%] Building C object libservices/CMakeFiles/mysqlservices.dir/thd_alloc_service.c.o
[ 78%] Building C object libservices/CMakeFiles/mysqlservices.dir/thd_wait_service.c.o
[ 78%] Building C object libservices/CMakeFiles/mysqlservices.dir/my_plugin_log_service.c.o
[ 78%] Building C object libservices/CMakeFiles/mysqlservices.dir/my_thread_scheduler_service.c.o
[ 78%] Building C object libservices/CMakeFiles/mysqlservices.dir/mysql_string_service.c.o
[ 78%] Linking C static library libmysqlservices.a
[ 78%] Built target mysqlservices
Scanning dependencies of target daemon_example
[ 78%] Building CXX object plugin/daemon_example/CMakeFiles/daemon_example.dir/daemon_example.cc.o
[ 78%] Linking CXX shared module libdaemon_example.so
[ 78%] Built target daemon_example
Scanning dependencies of target auth
[ 78%] Building C object plugin/auth/CMakeFiles/auth.dir/dialog.c.o
[ 79%] Linking C shared module auth.so
[ 79%] Built target auth
Scanning dependencies of target auth_socket
[ 79%] Building C object plugin/auth/CMakeFiles/auth_socket.dir/auth_socket.c.o
[ 79%] Linking C shared module auth_socket.so
[ 79%] Built target auth_socket
Scanning dependencies of target auth_test_plugin
[ 79%] Building C object plugin/auth/CMakeFiles/auth_test_plugin.dir/test_plugin.c.o
[ 79%] Linking C shared module auth_test_plugin.so
[ 79%] Built target auth_test_plugin
Scanning dependencies of target mysql_no_login
[ 79%] Building C object plugin/auth/CMakeFiles/mysql_no_login.dir/mysql_no_login.c.o
[ 79%] Linking C shared module mysql_no_login.so
[ 79%] Built target mysql_no_login
Scanning dependencies of target qa_auth_client
[ 79%] Building C object plugin/auth/CMakeFiles/qa_auth_client.dir/qa_auth_client.c.o
[ 79%] Linking C shared module qa_auth_client.so
[ 79%] Built target qa_auth_client
Scanning dependencies of target qa_auth_interface
[ 79%] Building C object plugin/auth/CMakeFiles/qa_auth_interface.dir/qa_auth_interface.c.o
[ 80%] Linking C shared module qa_auth_interface.so
[ 80%] Built target qa_auth_interface
Scanning dependencies of target qa_auth_server
[ 80%] Building C object plugin/auth/CMakeFiles/qa_auth_server.dir/qa_auth_server.c.o
[ 80%] Linking C shared module qa_auth_server.so
[ 80%] Built target qa_auth_server
Scanning dependencies of target ftexample
[ 80%] Building C object plugin/fulltext/CMakeFiles/ftexample.dir/plugin_example.c.o
[ 80%] Linking C shared module mypluglib.so
[ 80%] Built target ftexample
Scanning dependencies of target validate_password
[ 80%] Building CXX object plugin/password_validation/CMakeFiles/validate_password.dir/validate_password.cc.o
[ 80%] Linking CXX shared module validate_password.so
[ 80%] Built target validate_password
Scanning dependencies of target semisync_master
[ 80%] Building CXX object plugin/semisync/CMakeFiles/semisync_master.dir/semisync.cc.o
[ 80%] Building CXX object plugin/semisync/CMakeFiles/semisync_master.dir/semisync_master.cc.o
[ 80%] Building CXX object plugin/semisync/CMakeFiles/semisync_master.dir/semisync_master_plugin.cc.o
[ 80%] Linking CXX shared module semisync_master.so
[ 80%] Built target semisync_master
Scanning dependencies of target semisync_slave
[ 81%] Building CXX object plugin/semisync/CMakeFiles/semisync_slave.dir/semisync.cc.o
[ 81%] Building CXX object plugin/semisync/CMakeFiles/semisync_slave.dir/semisync_slave.cc.o
[ 81%] Building CXX object plugin/semisync/CMakeFiles/semisync_slave.dir/semisync_slave_plugin.cc.o
[ 81%] Linking CXX shared module semisync_slave.so
[ 81%] Built target semisync_slave
Scanning dependencies of target audit_null
[ 81%] Building C object plugin/audit_null/CMakeFiles/audit_null.dir/audit_null.c.o
[ 81%] Linking C shared module adt_null.so
[ 81%] Built target audit_null
Scanning dependencies of target re
[ 81%] Building C object regex/CMakeFiles/re.dir/main.c.o
[ 81%] Building C object regex/CMakeFiles/re.dir/split.c.o
[ 81%] Building C object regex/CMakeFiles/re.dir/debug.c.o
[ 81%] Linking C executable re
[ 81%] Built target re
Scanning dependencies of target base64_test
[ 81%] Building C object mysys/CMakeFiles/base64_test.dir/base64.c.o
[ 81%] Linking C executable base64_test
[ 81%] Built target base64_test
Scanning dependencies of target queues
[ 81%] Building C object mysys/CMakeFiles/queues.dir/queues.c.o
[ 81%] Linking C executable queues
[ 81%] Built target queues
Scanning dependencies of target thr_lock
[ 81%] Building C object mysys/CMakeFiles/thr_lock.dir/thr_lock.c.o
[ 81%] Linking C executable thr_lock
[ 81%] Built target thr_lock
Scanning dependencies of target clientlib
[ 81%] Building C object libmysql/CMakeFiles/clientlib.dir/get_password.c.o
[ 81%] Building C object libmysql/CMakeFiles/clientlib.dir/libmysql.c.o
[ 81%] Building C object libmysql/CMakeFiles/clientlib.dir/errmsg.c.o
[ 81%] Building C object libmysql/CMakeFiles/clientlib.dir/__/sql-common/client.c.o
[ 81%] Building C object libmysql/CMakeFiles/clientlib.dir/__/sql-common/my_time.c.o
[ 81%] Building C object libmysql/CMakeFiles/clientlib.dir/__/sql-common/client_plugin.c.o
[ 81%] Building CXX object libmysql/CMakeFiles/clientlib.dir/__/sql-common/client_authentication.cc.o
[ 81%] Building CXX object libmysql/CMakeFiles/clientlib.dir/__/sql/net_serv.cc.o
[ 82%] Building C object libmysql/CMakeFiles/clientlib.dir/__/sql-common/pack.c.o
[ 82%] Building C object libmysql/CMakeFiles/clientlib.dir/__/sql/password.c.o
[ 82%] Linking CXX static library libclientlib.a
[ 82%] Built target clientlib
Scanning dependencies of target libmysql
[ 82%] Building CXX object libmysql/CMakeFiles/libmysql.dir/libmysql_exports_file.cc.o
[ 82%] Linking CXX shared library libmysqlclient.so
[ 82%] Built target libmysql
[ 82%] Generating mysqlclient_depends.c
Scanning dependencies of target mysqlclient
[ 82%] Building C object libmysql/CMakeFiles/mysqlclient.dir/mysqlclient_depends.c.o
[ 82%] Linking C static library libmysqlclient.a
/usr/bin/ar: creating /usr/src/redhat/SOURCES/mysql-5.6.26/libmysql/libmysqlclient.a
[ 82%] Built target mysqlclient
Scanning dependencies of target symlink_libmysqlclient_r.a
[ 82%] Generating libmysqlclient_r.a
[ 82%] Built target symlink_libmysqlclient_r.a
Scanning dependencies of target symlink_libmysqlclient_r.so
[ 82%] Generating libmysqlclient_r.so
[ 82%] Built target symlink_libmysqlclient_r.so
Scanning dependencies of target symlink_libmysqlclient_r.so.18
[ 82%] Generating libmysqlclient_r.so.18
[ 82%] Built target symlink_libmysqlclient_r.so.18
Scanning dependencies of target symlink_libmysqlclient_r.so.18.1.0
[ 82%] Generating libmysqlclient_r.so.18.1.0
[ 82%] Built target symlink_libmysqlclient_r.so.18.1.0
Scanning dependencies of target no_plan-t
[ 82%] Building C object unittest/examples/CMakeFiles/no_plan-t.dir/no_plan-t.c.o
[ 82%] Linking C executable no_plan-t
[ 82%] Built target no_plan-t
Scanning dependencies of target simple-t
[ 82%] Building C object unittest/examples/CMakeFiles/simple-t.dir/simple-t.c.o
[ 82%] Linking C executable simple-t
[ 82%] Built target simple-t
Scanning dependencies of target skip-t
[ 82%] Building C object unittest/examples/CMakeFiles/skip-t.dir/skip-t.c.o
[ 82%] Linking C executable skip-t
[ 82%] Built target skip-t
Scanning dependencies of target skip_all-t
[ 82%] Building C object unittest/examples/CMakeFiles/skip_all-t.dir/skip_all-t.c.o
[ 82%] Linking C executable skip_all-t
[ 82%] Built target skip_all-t
Scanning dependencies of target todo-t
[ 82%] Building C object unittest/examples/CMakeFiles/todo-t.dir/todo-t.c.o
[ 82%] Linking C executable todo-t
[ 82%] Built target todo-t
Scanning dependencies of target basic-t
[ 82%] Building C object unittest/mytap/t/CMakeFiles/basic-t.dir/basic-t.c.o
[ 82%] Linking C executable basic-t
[ 82%] Built target basic-t
Scanning dependencies of target innochecksum
[ 82%] Building CXX object extra/CMakeFiles/innochecksum.dir/innochecksum.cc.o
[ 82%] Building CXX object extra/CMakeFiles/innochecksum.dir/__/storage/innobase/buf/buf0checksum.cc.o
[ 82%] Building CXX object extra/CMakeFiles/innochecksum.dir/__/storage/innobase/ut/ut0crc32.cc.o
[ 83%] Building CXX object extra/CMakeFiles/innochecksum.dir/__/storage/innobase/ut/ut0ut.cc.o
[ 83%] Linking CXX executable innochecksum
[ 83%] Built target innochecksum
Scanning dependencies of target my_print_defaults
[ 83%] Building C object extra/CMakeFiles/my_print_defaults.dir/my_print_defaults.c.o
[ 83%] Linking CXX executable my_print_defaults
[ 83%] Built target my_print_defaults
Scanning dependencies of target mysql_waitpid
[ 83%] Building C object extra/CMakeFiles/mysql_waitpid.dir/mysql_waitpid.c.o
[ 83%] Linking CXX executable mysql_waitpid
[ 83%] Built target mysql_waitpid
Scanning dependencies of target perror
[ 84%] Building C object extra/CMakeFiles/perror.dir/perror.c.o
[ 84%] Linking CXX executable perror
[ 84%] Built target perror
Scanning dependencies of target replace
[ 84%] Building C object extra/CMakeFiles/replace.dir/replace.c.o
[ 84%] Linking C executable replace
[ 84%] Built target replace
Scanning dependencies of target resolve_stack_dump
[ 84%] Building C object extra/CMakeFiles/resolve_stack_dump.dir/resolve_stack_dump.c.o
[ 84%] Linking CXX executable resolve_stack_dump
[ 84%] Built target resolve_stack_dump
Scanning dependencies of target resolveip
[ 84%] Building C object extra/CMakeFiles/resolveip.dir/resolveip.c.o
[ 84%] Linking CXX executable resolveip
[ 84%] Built target resolveip
Scanning dependencies of target mysql
[ 84%] Building CXX object client/CMakeFiles/mysql.dir/completion_hash.cc.o
[ 84%] Building CXX object client/CMakeFiles/mysql.dir/mysql.cc.o
[ 84%] Building CXX object client/CMakeFiles/mysql.dir/readline.cc.o
[ 84%] Building CXX object client/CMakeFiles/mysql.dir/sql_string.cc.o
[ 84%] Linking CXX executable mysql
[ 84%] Built target mysql
Scanning dependencies of target mysql_config_editor
[ 84%] Building CXX object client/CMakeFiles/mysql_config_editor.dir/mysql_config_editor.cc.o
[ 84%] Linking CXX executable mysql_config_editor
[ 84%] Built target mysql_config_editor
Scanning dependencies of target mysql_plugin
[ 84%] Building C object client/CMakeFiles/mysql_plugin.dir/mysql_plugin.c.o
[ 84%] Linking CXX executable mysql_plugin
[ 84%] Built target mysql_plugin
Scanning dependencies of target comp_sql
[ 84%] Building C object scripts/CMakeFiles/comp_sql.dir/comp_sql.c.o
[ 84%] Linking C executable comp_sql
[ 84%] Built target comp_sql
Scanning dependencies of target GenFixPrivs
[ 84%] Generating mysql_fix_privilege_tables_sql.c
[ 84%] Built target GenFixPrivs
Scanning dependencies of target mysql_upgrade
[ 84%] Building C object client/CMakeFiles/mysql_upgrade.dir/mysql_upgrade.c.o
[ 84%] Linking CXX executable mysql_upgrade
[ 84%] Built target mysql_upgrade
Scanning dependencies of target mysqladmin
[ 84%] Building CXX object client/CMakeFiles/mysqladmin.dir/mysqladmin.cc.o
[ 84%] Linking CXX executable mysqladmin
[ 84%] Built target mysqladmin
Scanning dependencies of target mysqlbinlog
[ 85%] Building CXX object client/CMakeFiles/mysqlbinlog.dir/mysqlbinlog.cc.o
[ 85%] Linking CXX executable mysqlbinlog
[ 85%] Built target mysqlbinlog
Scanning dependencies of target mysqlcheck
[ 85%] Building C object client/CMakeFiles/mysqlcheck.dir/mysqlcheck.c.o
[ 85%] Linking CXX executable mysqlcheck
[ 85%] Built target mysqlcheck
Scanning dependencies of target mysqldump
[ 85%] Building C object client/CMakeFiles/mysqldump.dir/mysqldump.c.o
[ 85%] Building C object client/CMakeFiles/mysqldump.dir/__/sql-common/my_user.c.o
[ 85%] Linking CXX executable mysqldump
[ 85%] Built target mysqldump
Scanning dependencies of target mysqlimport
[ 85%] Building C object client/CMakeFiles/mysqlimport.dir/mysqlimport.c.o
[ 85%] Linking CXX executable mysqlimport
[ 85%] Built target mysqlimport
Scanning dependencies of target mysqlshow
[ 85%] Building C object client/CMakeFiles/mysqlshow.dir/mysqlshow.c.o
[ 85%] Linking CXX executable mysqlshow
[ 85%] Built target mysqlshow
Scanning dependencies of target mysqlslap
[ 85%] Building C object client/CMakeFiles/mysqlslap.dir/mysqlslap.c.o
[ 85%] Linking CXX executable mysqlslap
[ 85%] Built target mysqlslap
Scanning dependencies of target mysqltest
[ 85%] Building CXX object client/CMakeFiles/mysqltest.dir/mysqltest.cc.o
[ 86%] Linking CXX executable mysqltest
[ 86%] Built target mysqltest
Scanning dependencies of target bug25714
[ 86%] Building C object tests/CMakeFiles/bug25714.dir/bug25714.c.o
[ 86%] Linking CXX executable bug25714
[ 86%] Built target bug25714
Scanning dependencies of target mysql_client_test
[ 86%] Building C object tests/CMakeFiles/mysql_client_test.dir/mysql_client_test.c.o
[ 86%] Linking CXX executable mysql_client_test
[ 86%] Built target mysql_client_test
Scanning dependencies of target mysql_tzinfo_to_sql
[ 86%] Building CXX object sql/CMakeFiles/mysql_tzinfo_to_sql.dir/tztime.cc.o
[ 86%] Linking CXX executable mysql_tzinfo_to_sql
[ 86%] Built target mysql_tzinfo_to_sql
Scanning dependencies of target mysqld
[ 86%] Building CXX object sql/CMakeFiles/mysqld.dir/main.cc.o
[ 86%] Linking CXX executable mysqld
[ 86%] Built target mysqld
Scanning dependencies of target partition_embedded
[ 86%] Building CXX object sql/CMakeFiles/partition_embedded.dir/ha_partition.cc.o
[ 86%] Linking CXX static library libpartition_embedded.a
[ 86%] Built target partition_embedded
Scanning dependencies of target sqlgunitlib
[ 86%] Building CXX object sql/CMakeFiles/sqlgunitlib.dir/filesort_utils.cc.o
[ 86%] Building CXX object sql/CMakeFiles/sqlgunitlib.dir/mdl.cc.o
[ 86%] Building CXX object sql/CMakeFiles/sqlgunitlib.dir/sql_list.cc.o
[ 86%] Building CXX object sql/CMakeFiles/sqlgunitlib.dir/sql_string.cc.o
[ 87%] Building CXX object sql/CMakeFiles/sqlgunitlib.dir/thr_malloc.cc.o
[ 87%] Linking CXX static library libsqlgunitlib.a
[ 87%] Built target sqlgunitlib
Scanning dependencies of target udf_example
[ 87%] Building CXX object sql/CMakeFiles/udf_example.dir/udf_example.cc.o
[ 87%] Linking CXX shared module udf_example.so
[ 87%] Built target udf_example
Scanning dependencies of target sql_embedded
[ 87%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/emb_qcache.cc.o
[ 87%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/lib_sql.cc.o
[ 87%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/libmysqld.c.o
[ 87%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_yacc.cc.o
[ 87%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_builtin.cc.o
[ 87%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/client/get_password.c.o
[ 87%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/libmysql/errmsg.c.o
[ 87%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/libmysql/libmysql.c.o
[ 87%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/sql-common/client.c.o
[ 87%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/sql-common/client_plugin.c.o
[ 88%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/sql-common/my_time.c.o
[ 88%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/sql-common/my_user.c.o
[ 88%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/sql-common/pack.c.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/binlog.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/event_parse_data.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/hash_filo.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/log_event.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_filter.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_injector.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_record.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_reporting.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_utility.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/uuid.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_misc.cc.o
[ 88%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_sid_map.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_set.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_specification.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_state.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_owned.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_cache.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_execution.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_gtid_mutex_cond_array.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/abstract_query_plan.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/datadict.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/debug_sync.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/derror.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/des_key_file.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/discover.cc.o
[ 89%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/field.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/field_conv.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/filesort.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/filesort_utils.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/gcalc_slicescan.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/gcalc_tools.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/gstream.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/handler.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/hostname.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/init.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_buff.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_cmpfunc.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_create.cc.o
[ 90%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_func.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_geofunc.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_row.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_strfunc.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_subselect.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_sum.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_timefunc.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_xmlfunc.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/item_inetfunc.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/key.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/keycaches.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/lock.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/log.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/mdl.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/mf_iocache.cc.o
[ 91%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/my_decimal.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/net_serv.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/opt_explain.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/opt_explain_traditional.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/opt_explain_json.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/opt_range.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/opt_sum.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/opt_trace.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/opt_trace2server.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/parse_file.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/partition_info.cc.o
[ 92%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/password.c.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/procedure.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/protocol.cc.o
[ 92%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/records.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/rpl_handler.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/scheduler.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/set_var.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/signal_handler.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sp.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sp_cache.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sp_head.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sp_instr.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sp_pcontext.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sp_rcontext.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/spatial.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/string_service.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_acl.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_admin.cc.o
[ 93%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_alloc_error_handler.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_alter.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_analyse.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_audit.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_base.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_bootstrap.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_cache.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_class.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_connect.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_crypt.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_cursor.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_data_change.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_db.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_delete.cc.o
[ 94%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_derived.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_digest.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_do.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_error.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_executor.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_get_diagnostics.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_handler.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_help.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_insert.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_join_buffer.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_lex.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_list.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_load.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_locale.cc.o
[ 95%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_manager.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_optimizer.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_parse.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_partition.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_partition_admin.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_planner.cc.o
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc: In member function 鈥榲oid Optimize_table_order::best_access_path(JOIN_TAB*, table_map, uint, bool, double, POSITION*, POSITION*)鈥

                                                                                                                                                                                             /usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::quick_max_loose_keypart鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::best_loose_scan_key鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::best_loose_scan_records鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::best_max_loose_keypart鈥may be used uninitialized in this function
/usr/src/redhat/SOURCES/mysql-5.6.26/sql/sql_planner.cc:431: warning: 鈥榣oose_scan_opt.Loose_scan_opt::best_loose_scan_start_key鈥may be used uninitialized in this function
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_plugin.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_prepare.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_profile.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_reload.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_rename.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_resolver.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_rewrite.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_select.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_servers.cc.o
[ 96%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_show.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_signal.cc.o
[ 97%] Building C object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_state.c.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_string.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_table.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_tablespace.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_test.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_time.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_tmp_table.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_trigger.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_truncate.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_udf.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_union.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_update.cc.o
[ 97%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_view.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/strfunc.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sys_vars.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/table.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/table_cache.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/thr_malloc.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/transaction.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/tztime.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/uniques.cc.o
[ 98%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/unireg.cc.o
[ 98%] Linking CXX static library libsql_embedded.a
[ 98%] Built target sql_embedded
[ 99%] Generating mysqlserver_depends.c
Scanning dependencies of target mysqlserver
[ 99%] Building C object libmysqld/CMakeFiles/mysqlserver.dir/mysqlserver_depends.c.o
[ 99%] Linking C static library libmysqld.a
/usr/bin/ar: creating /usr/src/redhat/SOURCES/mysql-5.6.26/libmysqld/libmysqld.a
[ 99%] Built target mysqlserver
Scanning dependencies of target mysql_client_test_embedded
[ 99%] Building C object libmysqld/examples/CMakeFiles/mysql_client_test_embedded.dir/__/__/tests/mysql_client_test.c.o
[ 99%] Linking CXX executable mysql_client_test_embedded
[ 99%] Built target mysql_client_test_embedded
Scanning dependencies of target mysql_embedded
[ 99%] Building CXX object libmysqld/examples/CMakeFiles/mysql_embedded.dir/__/__/client/completion_hash.cc.o
[100%] Building CXX object libmysqld/examples/CMakeFiles/mysql_embedded.dir/__/__/client/mysql.cc.o
[100%] Building CXX object libmysqld/examples/CMakeFiles/mysql_embedded.dir/__/__/client/readline.cc.o
[100%] Linking CXX executable mysql_embedded
[100%] Built target mysql_embedded
Scanning dependencies of target mysqltest_embedded
[100%] Building CXX object libmysqld/examples/CMakeFiles/mysqltest_embedded.dir/__/__/client/mysqltest.cc.o
[100%] Linking CXX executable mysqltest_embedded
[100%] Built target mysqltest_embedded
Scanning dependencies of target my_safe_process
[100%] Building CXX object mysql-test/lib/My/SafeProcess/CMakeFiles/my_safe_process.dir/safe_process.cc.o
[100%] Linking CXX executable my_safe_process
[100%] Built target my_safe_process
[  0%] Built target INFO_BIN
[  0%] Built target INFO_SRC
[  0%] Built target abi_check
[  1%] Built target zlib
[  2%] Built target yassl
[  4%] Built target taocrypt
[  7%] Built target edit
[ 10%] Built target strings
[ 16%] Built target mysys
[ 16%] Built target dbug
[ 17%] Built target mysys_ssl
[ 17%] Built target comp_err
[ 17%] Built target GenError
[ 17%] Built target archive
[ 17%] Built target archive_embedded
[ 17%] Built target csv
[ 18%] Built target csv_embedded
[ 18%] Built target federated
[ 18%] Built target federated_embedded
[ 22%] Built target myisam
[ 26%] Built target myisam_embedded
[ 26%] Built target myisam_ftdump
[ 26%] Built target myisamchk
[ 26%] Built target myisamlog
[ 27%] Built target myisampack
[ 28%] Built target blackhole
[ 28%] Built target blackhole_embedded
[ 30%] Built target myisammrg
[ 31%] Built target myisammrg_embedded
[ 36%] Built target perfschema
[ 41%] Built target perfschema_embedded
[ 41%] Built target mytap
[ 41%] Built target pfs_server_stubs
[ 41%] Built target pfs-t
[ 41%] Built target pfs_account-oom-t
[ 41%] Built target gen_lex_hash
[ 41%] Built target GenServerSource
[ 43%] Built target heap
[ 51%] Built target innobase
[ 52%] Built target vio
[ 53%] Built target regex
[ 53%] Built target gen_lex_token
[ 54%] Built target partition
[ 54%] Built target GenDigestServerSource
[ 65%] Built target sql
[ 66%] Built target binlog
[ 66%] Built target rpl
[ 66%] Built target master
[ 67%] Built target slave
[ 67%] Built target pfs_connect_attr-t
[ 67%] Built target pfs_host-oom-t
[ 67%] Built target pfs_instr-oom-t
[ 68%] Built target pfs_instr-t
[ 68%] Built target pfs_instr_class-oom-t
[ 68%] Built target pfs_instr_class-t
[ 68%] Built target pfs_misc-t
[ 68%] Built target pfs_user-oom-t
[ 70%] Built target heap_embedded
[ 70%] Built target hp_test1
[ 70%] Built target hp_test2
[ 78%] Built target innobase_embedded
[ 78%] Built target mysqlservices
[ 78%] Built target daemon_example
[ 79%] Built target auth
[ 79%] Built target auth_socket
[ 79%] Built target auth_test_plugin
[ 79%] Built target mysql_no_login
[ 79%] Built target qa_auth_client
[ 80%] Built target qa_auth_interface
[ 80%] Built target qa_auth_server
[ 80%] Built target ftexample
[ 80%] Built target validate_password
[ 80%] Built target semisync_master
[ 81%] Built target semisync_slave
[ 81%] Built target audit_null
[ 81%] Built target re
[ 81%] Built target base64_test
[ 81%] Built target queues
[ 81%] Built target thr_lock
[ 82%] Built target clientlib
[ 82%] Built target libmysql
[ 82%] Built target mysqlclient
[ 82%] Built target symlink_libmysqlclient_r.a
[ 82%] Built target symlink_libmysqlclient_r.so
[ 82%] Built target symlink_libmysqlclient_r.so.18
[ 82%] Built target symlink_libmysqlclient_r.so.18.1.0
[ 82%] Built target no_plan-t
[ 82%] Built target simple-t
[ 82%] Built target skip-t
[ 82%] Built target skip_all-t
[ 82%] Built target todo-t
[ 82%] Built target basic-t
[ 83%] Built target innochecksum
[ 83%] Built target my_print_defaults
[ 83%] Built target mysql_waitpid
[ 84%] Built target perror
[ 84%] Built target replace
[ 84%] Built target resolve_stack_dump
[ 84%] Built target resolveip
[ 84%] Built target mysql
[ 84%] Built target mysql_config_editor
[ 84%] Built target mysql_plugin
[ 84%] Built target comp_sql
[ 84%] Built target GenFixPrivs
[ 84%] Built target mysql_upgrade
[ 84%] Built target mysqladmin
[ 85%] Built target mysqlbinlog
[ 85%] Built target mysqlcheck
[ 85%] Built target mysqldump
[ 85%] Built target mysqlimport
[ 85%] Built target mysqlshow
[ 85%] Built target mysqlslap
[ 86%] Built target mysqltest
[ 86%] Built target bug25714
[ 86%] Built target mysql_client_test
[ 86%] Built target mysql_tzinfo_to_sql
[ 86%] Built target mysqld
[ 86%] Built target partition_embedded
[ 87%] Built target sqlgunitlib
[ 87%] Built target udf_example
[ 98%] Built target sql_embedded
[ 99%] Built target mysqlserver
[ 99%] Built target mysql_client_test_embedded
[100%] Built target mysql_embedded
[100%] Built target mysqltest_embedded
[100%] Built target my_safe_process
Install the project...
-- Install configuration: "RelWithDebInfo"
-- Installing: /mysql/software/./COPYING
-- Installing: /mysql/software/./README
-- Installing: /mysql/software/docs/INFO_SRC
-- Installing: /mysql/software/docs/INFO_BIN
-- Installing: /mysql/software/./INSTALL-BINARY
-- Up-to-date: /mysql/software/docs
-- Up-to-date: /mysql/software/docs/INFO_BIN
-- Up-to-date: /mysql/software/docs/INFO_SRC
-- Installing: /mysql/software/docs/ChangeLog
-- Installing: /mysql/software/bin/myisam_ftdump
-- Installing: /mysql/software/bin/myisamchk
-- Installing: /mysql/software/bin/myisamlog
-- Installing: /mysql/software/bin/myisampack
-- Installing: /mysql/software/share/innodb_memcached_config.sql
-- Installing: /mysql/software/lib/plugin/libdaemon_example.so
-- Installing: /mysql/software/lib/plugin/daemon_example.ini
-- Installing: /mysql/software/lib/plugin/auth.so
-- Installing: /mysql/software/lib/plugin/auth_test_plugin.so
-- Installing: /mysql/software/lib/plugin/qa_auth_interface.so
-- Installing: /mysql/software/lib/plugin/qa_auth_server.so
-- Installing: /mysql/software/lib/plugin/qa_auth_client.so
-- Installing: /mysql/software/lib/plugin/mysql_no_login.so
-- Installing: /mysql/software/lib/plugin/auth_socket.so
-- Installing: /mysql/software/lib/plugin/mypluglib.so
-- Installing: /mysql/software/lib/plugin/validate_password.so
-- Installing: /mysql/software/lib/plugin/semisync_master.so
-- Installing: /mysql/software/lib/plugin/semisync_slave.so
-- Installing: /mysql/software/lib/plugin/adt_null.so
-- Installing: /mysql/software/include/mysql.h
-- Installing: /mysql/software/include/mysql_com.h
-- Installing: /mysql/software/include/mysql_time.h
-- Installing: /mysql/software/include/my_list.h
-- Installing: /mysql/software/include/my_alloc.h
-- Installing: /mysql/software/include/typelib.h
-- Installing: /mysql/software/include/plugin.h
-- Installing: /mysql/software/include/plugin_audit.h
-- Installing: /mysql/software/include/plugin_ftparser.h
-- Installing: /mysql/software/include/plugin_validate_password.h
-- Installing: /mysql/software/include/my_dbug.h
-- Installing: /mysql/software/include/m_string.h
-- Installing: /mysql/software/include/my_sys.h
-- Installing: /mysql/software/include/my_xml.h
-- Installing: /mysql/software/include/mysql_embed.h
-- Installing: /mysql/software/include/my_pthread.h
-- Installing: /mysql/software/include/decimal.h
-- Installing: /mysql/software/include/errmsg.h
-- Installing: /mysql/software/include/my_global.h
-- Installing: /mysql/software/include/my_net.h
-- Installing: /mysql/software/include/my_getopt.h
-- Installing: /mysql/software/include/sslopt-longopts.h
-- Installing: /mysql/software/include/my_dir.h
-- Installing: /mysql/software/include/sslopt-vars.h
-- Installing: /mysql/software/include/sslopt-case.h
-- Installing: /mysql/software/include/sql_common.h
-- Installing: /mysql/software/include/keycache.h
-- Installing: /mysql/software/include/m_ctype.h
-- Installing: /mysql/software/include/my_attribute.h
-- Installing: /mysql/software/include/my_compiler.h
-- Installing: /mysql/software/include/mysql_com_server.h
-- Installing: /mysql/software/include/my_byteorder.h
-- Installing: /mysql/software/include/byte_order_generic.h
-- Installing: /mysql/software/include/byte_order_generic_x86.h
-- Installing: /mysql/software/include/byte_order_generic_x86_64.h
-- Installing: /mysql/software/include/little_endian.h
-- Installing: /mysql/software/include/big_endian.h
-- Installing: /mysql/software/include/mysql_version.h
-- Installing: /mysql/software/include/my_config.h
-- Installing: /mysql/software/include/mysqld_ername.h
-- Installing: /mysql/software/include/mysqld_error.h
-- Installing: /mysql/software/include/sql_state.h
-- Installing: /mysql/software/include/mysql
-- Installing: /mysql/software/include/mysql/thread_pool_priv.h
-- Installing: /mysql/software/include/mysql/plugin_auth.h.pp
-- Installing: /mysql/software/include/mysql/plugin_ftparser.h
-- Installing: /mysql/software/include/mysql/client_authentication.h
-- Installing: /mysql/software/include/mysql/plugin_audit.h.pp
-- Installing: /mysql/software/include/mysql/client_plugin.h.pp
-- Installing: /mysql/software/include/mysql/plugin_auth_common.h
-- Installing: /mysql/software/include/mysql/service_thd_wait.h
-- Installing: /mysql/software/include/mysql/client_plugin.h
-- Installing: /mysql/software/include/mysql/service_thread_scheduler.h
-- Installing: /mysql/software/include/mysql/plugin.h
-- Installing: /mysql/software/include/mysql/plugin_audit.h
-- Installing: /mysql/software/include/mysql/psi
-- Installing: /mysql/software/include/mysql/psi/psi.h
-- Installing: /mysql/software/include/mysql/psi/mysql_file.h
-- Installing: /mysql/software/include/mysql/psi/mysql_statement.h
-- Installing: /mysql/software/include/mysql/psi/mysql_socket.h
-- Installing: /mysql/software/include/mysql/psi/mysql_table.h
-- Installing: /mysql/software/include/mysql/psi/mysql_thread.h
-- Installing: /mysql/software/include/mysql/psi/mysql_idle.h
-- Installing: /mysql/software/include/mysql/psi/mysql_stage.h
-- Installing: /mysql/software/include/mysql/plugin_validate_password.h
-- Installing: /mysql/software/include/mysql/plugin_ftparser.h.pp
-- Installing: /mysql/software/include/mysql/services.h
-- Installing: /mysql/software/include/mysql/service_thd_alloc.h
-- Installing: /mysql/software/include/mysql/get_password.h
-- Installing: /mysql/software/include/mysql/plugin_auth.h
-- Installing: /mysql/software/include/mysql/service_my_snprintf.h
-- Installing: /mysql/software/include/mysql/service_mysql_string.h
-- Installing: /mysql/software/include/mysql/innodb_priv.h
-- Installing: /mysql/software/include/mysql/service_my_plugin_log.h
-- Installing: /mysql/software/lib/libmysqlclient.a
-- Installing: /mysql/software/lib/libmysqlclient_r.a
-- Installing: /mysql/software/lib/libmysqlclient.so.18.1.0
-- Installing: /mysql/software/lib/libmysqlclient.so.18
-- Installing: /mysql/software/lib/libmysqlclient.so
-- Installing: /mysql/software/lib/libmysqlclient_r.so
-- Installing: /mysql/software/lib/libmysqlclient_r.so.18
-- Installing: /mysql/software/lib/libmysqlclient_r.so.18.1.0
-- Installing: /mysql/software/bin/my_print_defaults
-- Installing: /mysql/software/bin/perror
-- Installing: /mysql/software/bin/resolveip
-- Installing: /mysql/software/bin/replace
-- Installing: /mysql/software/bin/innochecksum
-- Installing: /mysql/software/bin/resolve_stack_dump
-- Installing: /mysql/software/bin/mysql_waitpid
-- Installing: /mysql/software/bin/mysql
-- Installing: /mysql/software/bin/mysqltest
-- Installing: /mysql/software/bin/mysqlcheck
-- Installing: /mysql/software/bin/mysqldump
-- Installing: /mysql/software/bin/mysqlimport
-- Installing: /mysql/software/bin/mysql_upgrade
-- Installing: /mysql/software/bin/mysqlshow
-- Installing: /mysql/software/bin/mysql_plugin
-- Installing: /mysql/software/bin/mysqlbinlog
-- Installing: /mysql/software/bin/mysqladmin
-- Installing: /mysql/software/bin/mysqlslap
-- Installing: /mysql/software/bin/mysql_config_editor
-- Installing: /mysql/software/share/danish
-- Installing: /mysql/software/share/danish/errmsg.sys
-- Installing: /mysql/software/share/german
-- Installing: /mysql/software/share/german/errmsg.sys
-- Installing: /mysql/software/share/slovak
-- Installing: /mysql/software/share/slovak/errmsg.sys
-- Installing: /mysql/software/share/dutch
-- Installing: /mysql/software/share/dutch/errmsg.sys
-- Installing: /mysql/software/share/greek
-- Installing: /mysql/software/share/greek/errmsg.sys
-- Installing: /mysql/software/share/norwegian
-- Installing: /mysql/software/share/norwegian/errmsg.sys
-- Installing: /mysql/software/share/spanish
-- Installing: /mysql/software/share/spanish/errmsg.sys
-- Installing: /mysql/software/share/english
-- Installing: /mysql/software/share/english/errmsg.sys
-- Installing: /mysql/software/share/hungarian
-- Installing: /mysql/software/share/hungarian/errmsg.sys
-- Installing: /mysql/software/share/norwegian-ny
-- Installing: /mysql/software/share/norwegian-ny/errmsg.sys
-- Installing: /mysql/software/share/swedish
-- Installing: /mysql/software/share/swedish/errmsg.sys
-- Installing: /mysql/software/share/italian
-- Installing: /mysql/software/share/italian/errmsg.sys
-- Installing: /mysql/software/share/polish
-- Installing: /mysql/software/share/polish/errmsg.sys
-- Installing: /mysql/software/share/ukrainian
-- Installing: /mysql/software/share/ukrainian/errmsg.sys
-- Installing: /mysql/software/share/japanese
-- Installing: /mysql/software/share/japanese/errmsg.sys
-- Installing: /mysql/software/share/portuguese
-- Installing: /mysql/software/share/portuguese/errmsg.sys
-- Installing: /mysql/software/share/romanian
-- Installing: /mysql/software/share/romanian/errmsg.sys
-- Installing: /mysql/software/share/estonian
-- Installing: /mysql/software/share/estonian/errmsg.sys
-- Installing: /mysql/software/share/korean
-- Installing: /mysql/software/share/korean/errmsg.sys
-- Installing: /mysql/software/share/russian
-- Installing: /mysql/software/share/russian/errmsg.sys
-- Installing: /mysql/software/share/czech
-- Installing: /mysql/software/share/czech/errmsg.sys
-- Installing: /mysql/software/share/french
-- Installing: /mysql/software/share/french/errmsg.sys
-- Installing: /mysql/software/share/serbian
-- Installing: /mysql/software/share/serbian/errmsg.sys
-- Installing: /mysql/software/share/bulgarian
-- Installing: /mysql/software/share/bulgarian/errmsg.sys
-- Installing: /mysql/software/share/charsets
-- Installing: /mysql/software/share/charsets/cp852.xml
-- Installing: /mysql/software/share/charsets/cp866.xml
-- Installing: /mysql/software/share/charsets/hp8.xml
-- Installing: /mysql/software/share/charsets/cp1250.xml
-- Installing: /mysql/software/share/charsets/macroman.xml
-- Installing: /mysql/software/share/charsets/geostd8.xml
-- Installing: /mysql/software/share/charsets/greek.xml
-- Installing: /mysql/software/share/charsets/cp1257.xml
-- Installing: /mysql/software/share/charsets/latin2.xml
-- Installing: /mysql/software/share/charsets/latin1.xml
-- Installing: /mysql/software/share/charsets/macce.xml
-- Installing: /mysql/software/share/charsets/hebrew.xml
-- Installing: /mysql/software/share/charsets/README
-- Installing: /mysql/software/share/charsets/Index.xml
-- Installing: /mysql/software/share/charsets/swe7.xml
-- Installing: /mysql/software/share/charsets/ascii.xml
-- Installing: /mysql/software/share/charsets/cp1256.xml
-- Installing: /mysql/software/share/charsets/armscii8.xml
-- Installing: /mysql/software/share/charsets/latin5.xml
-- Installing: /mysql/software/share/charsets/koi8r.xml
-- Installing: /mysql/software/share/charsets/keybcs2.xml
-- Installing: /mysql/software/share/charsets/cp850.xml
-- Installing: /mysql/software/share/charsets/cp1251.xml
-- Installing: /mysql/software/share/charsets/dec8.xml
-- Installing: /mysql/software/share/charsets/latin7.xml
-- Installing: /mysql/software/share/charsets/koi8u.xml
-- Installing: /mysql/software/share/errmsg-utf8.txt
-- Installing: /mysql/software/share/dictionary.txt
-- Installing: /mysql/software/lib/libmysqlservices.a
-- Installing: /mysql/software/man/man1/mysqlshow.1
-- Installing: /mysql/software/man/man1/resolveip.1
-- Installing: /mysql/software/man/man1/myisam_ftdump.1
-- Installing: /mysql/software/man/man1/mysql_upgrade.1
-- Installing: /mysql/software/man/man1/myisampack.1
-- Installing: /mysql/software/man/man1/my_print_defaults.1
-- Installing: /mysql/software/man/man1/mysqlimport.1
-- Installing: /mysql/software/man/man1/msql2mysql.1
-- Installing: /mysql/software/man/man1/myisamlog.1
-- Installing: /mysql/software/man/man1/mysql_waitpid.1
-- Installing: /mysql/software/man/man1/mysql-stress-test.pl.1
-- Installing: /mysql/software/man/man1/replace.1
-- Installing: /mysql/software/man/man1/innochecksum.1
-- Installing: /mysql/software/man/man1/mysql_find_rows.1
-- Installing: /mysql/software/man/man1/mysqldumpslow.1
-- Installing: /mysql/software/man/man1/mysqlcheck.1
-- Installing: /mysql/software/man/man1/mysqlbinlog.1
-- Installing: /mysql/software/man/man1/mysql-test-run.pl.1
-- Installing: /mysql/software/man/man1/mysqladmin.1
-- Installing: /mysql/software/man/man1/mysqlaccess.1
-- Installing: /mysql/software/man/man1/mysqlman.1
-- Installing: /mysql/software/man/man1/mysql_plugin.1
-- Installing: /mysql/software/man/man1/mysql_install_db.1
-- Installing: /mysql/software/man/man1/mysql_config_editor.1
-- Installing: /mysql/software/man/man1/mysql_secure_installation.1
-- Installing: /mysql/software/man/man1/mysql_zap.1
-- Installing: /mysql/software/man/man1/mysqld_safe.1
-- Installing: /mysql/software/man/man1/comp_err.1
-- Installing: /mysql/software/man/man1/mysqlslap.1
-- Installing: /mysql/software/man/man1/mysql_setpermission.1
-- Installing: /mysql/software/man/man1/perror.1
-- Installing: /mysql/software/man/man1/mysql.server.1
-- Installing: /mysql/software/man/man1/mysql_client_test_embedded.1
-- Installing: /mysql/software/man/man1/mysql_convert_table_format.1
-- Installing: /mysql/software/man/man1/mysql_fix_extensions.1
-- Installing: /mysql/software/man/man1/mysqltest.1
-- Installing: /mysql/software/man/man1/myisamchk.1
-- Installing: /mysql/software/man/man1/mysqlbug.1
-- Installing: /mysql/software/man/man1/mysql_client_test.1
-- Installing: /mysql/software/man/man1/mysql_config.1
-- Installing: /mysql/software/man/man1/mysqltest_embedded.1
-- Installing: /mysql/software/man/man1/mysql.1
-- Installing: /mysql/software/man/man1/mysql_tzinfo_to_sql.1
-- Installing: /mysql/software/man/man1/mysqldump.1
-- Installing: /mysql/software/man/man1/resolve_stack_dump.1
-- Installing: /mysql/software/man/man1/mysqld_multi.1
-- Installing: /mysql/software/man/man1/mysqlhotcopy.1
-- Installing: /mysql/software/man/man8/mysqld.8
-- Installing: /mysql/software/bin/mysql_client_test
-- Installing: /mysql/software/bin/mysqld
-- Installing: /mysql/software/bin/mysql_tzinfo_to_sql
-- Installing: /mysql/software/data/test/db.opt
-- Installing: /mysql/software/lib/libmysqld.a
-- Installing: /mysql/software/bin/mysql_embedded
-- Installing: /mysql/software/bin/mysqltest_embedded
-- Installing: /mysql/software/bin/mysql_client_test_embedded
-- Installing: /mysql/software/share/mysql_system_tables.sql
-- Installing: /mysql/software/share/mysql_system_tables_data.sql
-- Installing: /mysql/software/share/fill_help_tables.sql
-- Installing: /mysql/software/share/mysql_test_data_timezone.sql
-- Installing: /mysql/software/share/mysql_security_commands.sql
-- Installing: /mysql/software/bin/mysqlbug
-- Installing: /mysql/software/scripts/mysql_install_db
-- Installing: /mysql/software/bin/msql2mysql
-- Installing: /mysql/software/bin/mysql_config
-- Installing: /mysql/software/bin/mysql_fix_extensions
-- Installing: /mysql/software/bin/mysql_setpermission
-- Installing: /mysql/software/bin/mysql_zap
-- Installing: /mysql/software/bin/mysqlaccess
-- Installing: /mysql/software/bin/mysqlaccess.conf
-- Installing: /mysql/software/bin/mysql_convert_table_format
-- Installing: /mysql/software/bin/mysql_find_rows
-- Installing: /mysql/software/bin/mysqlhotcopy
-- Installing: /mysql/software/bin/mysqldumpslow
-- Installing: /mysql/software/bin/mysqld_multi
-- Installing: /mysql/software/bin/mysqld_safe
-- Installing: /mysql/software/bin/mysql_secure_installation
-- Installing: /mysql/software/mysql-test/.
-- Installing: /mysql/software/mysql-test/./purify.supp
-- Installing: /mysql/software/mysql-test/./valgrind.supp
-- Installing: /mysql/software/mysql-test/./README.gcov
-- Installing: /mysql/software/mysql-test/./mysql-stress-test.pl
-- Installing: /mysql/software/mysql-test/./CTestTestfile.cmake
-- Installing: /mysql/software/mysql-test/./extra
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/drop_table.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/mysqlbinlog_row_engine.inc
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog_implicit_commit.inc
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/ctype_ucs_binlog.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog_mysqlbinlog_start_stop.inc
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/ctype_cp932_binlog.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/implicit.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/drop_temp_table.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog_mysqlbinlog_fill.inc
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog_truncate.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/mysqlbinlog_start_stop_1.inc
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/ctype_cp932.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog_mysqlbinlog_row.inc
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog_insert_delayed.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/mix_innodb_myisam_binlog.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/mysqlbinlog_start_stop_2.inc
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog_innodb.inc
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/binlog_cache_stat.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/blackhole.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/mix_innodb_myisam_side_effects.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/insert_select-binlog.test
-- Installing: /mysql/software/mysql-test/./extra/binlog_tests/database.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_do_table_filter_insensitive.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_conflicts.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/type_conversions.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_show_binlog_events.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_binlog_error.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_ignore_table_filter_sensitive.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_insert_delayed.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_tabledefs.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_partition.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_blackhole.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_innodb.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_extra_col_slave.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_multi_query.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_tmp_table_and_DDL.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_insert_ignore.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_change_master_bind.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_auto_increment_insert_view.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_event_max_size.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_reset_slave.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_insert_id_pk.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_trig004.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_flsh_tbls.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_ddl.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_not_null.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_img_diff_indexes.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_ignore_table_filter_insensitive.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_func003.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_stm_EE_err2.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_mixing_engines.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_get_master_version_and_clock.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_show_log_events_with_varying_options.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_delayed_ins.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_deadlock.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_crash_safe.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_log.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_multi_update3.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_001.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_set_null.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_binlog_max_cache_size.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_commit_after_flush.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_foreign_key.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/grep_pattern.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_mixing_engines.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_parallel_load_innodb.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_sp002.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_sp006.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_extra_col_master.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_basic.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_EE_err.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/create_recursive_construct.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_do_table_filter_sensitive.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_record_compare.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_autoinc_func_invokes_trigger.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_blob.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_show_relaylog_events.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_sp007.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_loaddata.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_multi_update2.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_UUID.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_parallel_load.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_img.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_kill_query.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/check_type.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_idempotency.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_charset.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_gtid_mts_relay_log_recovery.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_stop_middle_group.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_stm_mix_show_relaylog_events.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_show_relaylog_events.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_sp003.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_lower_case_table_names.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_test_framework.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_loaddata_s.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_sv_relay_space.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/delayed_slave_wait_on_query.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_filters.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_stm_insert_delayed.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_delete_no_where.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_truncate.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_multi_update.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_heartbeat_2slaves.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_gtid_drop_table.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_relayrotate.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_temp_error.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_max_relay_size.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_drop_create_temp_table.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_insert_id.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_crash_safe.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_check_gtid.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_truncate_helper.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_auto_increment_invoke_trigger.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_change_master.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_img_blobs.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_stop_slave.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_implicit_commit_binlog.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_drop_create_temp_table.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_auto_increment.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_insert_ignore_gtid_on.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_loadfile.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_mts_crash_safe.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_stress_test.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_mts_crash_safe.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_gtids_restart_slave_io_lost_trx.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_row_empty_imgs.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_start_stop_slave.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_failed_optimize.test
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_mts_execute_partial_trx_in_relay_log.inc
-- Installing: /mysql/software/mysql-test/./extra/rpl_tests/rpl_stm_create_if_not_exists.test
-- Installing: /mysql/software/mysql-test/./mtr
-- Installing: /mysql/software/mysql-test/./README
-- Installing: /mysql/software/mysql-test/./r
-- Installing: /mysql/software/mysql-test/./r/events_embedded.result
-- Installing: /mysql/software/mysql-test/./r/no_binlog.result
-- Installing: /mysql/software/mysql-test/./r/null_key_none.result
-- Installing: /mysql/software/mysql-test/./r/type_temporal_upgrade.result
-- Installing: /mysql/software/mysql-test/./r/myisam_mrr_cost_icp.result
-- Installing: /mysql/software/mysql-test/./r/server_uuid_embedded.result
-- Installing: /mysql/software/mysql-test/./r/multi_plugin_load_add.result
-- Installing: /mysql/software/mysql-test/./r/gis-rtree.result
-- Installing: /mysql/software/mysql-test/./r/case.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_sha256_server_default_tls.result
-- Installing: /mysql/software/mysql-test/./r/fix_priv_tables.result
-- Installing: /mysql/software/mysql-test/./r/partition_pruning.result
-- Installing: /mysql/software/mysql-test/./r/binary.result
-- Installing: /mysql/software/mysql-test/./r/ps_ddl1.result
-- Installing: /mysql/software/mysql-test/./r/partition_csv.result
-- Installing: /mysql/software/mysql-test/./r/have_cp932.require
-- Installing: /mysql/software/mysql-test/./r/rollback.result
-- Installing: /mysql/software/mysql-test/./r/skip_grants.result
-- Installing: /mysql/software/mysql-test/./r/rename.result
-- Installing: /mysql/software/mysql-test/./r/change_user.result
-- Installing: /mysql/software/mysql-test/./r/mysql_upgrade.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_innodb_all_bka.result
-- Installing: /mysql/software/mysql-test/./r/explain.result
-- Installing: /mysql/software/mysql-test/./r/have_query_cache.require
-- Installing: /mysql/software/mysql-test/./r/group_min_max_innodb.result
-- Installing: /mysql/software/mysql-test/./r/key_diff.result
-- Installing: /mysql/software/mysql-test/./r/commit_1innodb.result
-- Installing: /mysql/software/mysql-test/./r/tablespace.result
-- Installing: /mysql/software/mysql-test/./r/lock_multi_bug38691.result
-- Installing: /mysql/software/mysql-test/./r/mdl_sync.result
-- Installing: /mysql/software/mysql-test/./r/order_fill_sortbuf.result
-- Installing: /mysql/software/mysql-test/./r/ctype_euckr.result
-- Installing: /mysql/software/mysql-test/./r/mysqlbinlog_row_big.result
-- Installing: /mysql/software/mysql-test/./r/func_regexp.result
-- Installing: /mysql/software/mysql-test/./r/partition_binlog_stmt.result
-- Installing: /mysql/software/mysql-test/./r/fulltext2.result
-- Installing: /mysql/software/mysql-test/./r/mysqlhotcopy_myisam.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_ps_ps_prot.result
-- Installing: /mysql/software/mysql-test/./r/ctype_latin1_de.result
-- Installing: /mysql/software/mysql-test/./r/myisam_explain_non_select_none.result
-- Installing: /mysql/software/mysql-test/./r/myisam_explain_json_non_select_none.result
-- Installing: /mysql/software/mysql-test/./r/ssl_cipher.result
-- Installing: /mysql/software/mysql-test/./r/ds_mrr-big.result
-- Installing: /mysql/software/mysql-test/./r/mysql_not_windows.result
-- Installing: /mysql/software/mysql-test/./r/partition_cache.result
-- Installing: /mysql/software/mysql-test/./r/ps.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_size_functionality.result
-- Installing: /mysql/software/mysql-test/./r/func_date_add.result
-- Installing: /mysql/software/mysql-test/./r/bulk_replace.result
-- Installing: /mysql/software/mysql-test/./r/fulltext_left_join.result
-- Installing: /mysql/software/mysql-test/./r/bug12969156.result
-- Installing: /mysql/software/mysql-test/./r/udf.result
-- Installing: /mysql/software/mysql-test/./r/select_icp_mrr_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/loadxml.result
-- Installing: /mysql/software/mysql-test/./r/sp_trans_log.result
-- Installing: /mysql/software/mysql-test/./r/ps_grant.result
-- Installing: /mysql/software/mysql-test/./r/warnings_engine_disabled.result
-- Installing: /mysql/software/mysql-test/./r/parser_bug21114_innodb.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mrr_cost.result
-- Installing: /mysql/software/mysql-test/./r/ps_2myisam.result
-- Installing: /mysql/software/mysql-test/./r/partition_mgm_err.result
-- Installing: /mysql/software/mysql-test/./r/bench_count_distinct.result
-- Installing: /mysql/software/mysql-test/./r/have_perror.require
-- Installing: /mysql/software/mysql-test/./r/range_mrr.result
-- Installing: /mysql/software/mysql-test/./r/status_bug17954.result
-- Installing: /mysql/software/mysql-test/./r/order_by_icp_mrr.result
-- Installing: /mysql/software/mysql-test/./r/comment_table.result
-- Installing: /mysql/software/mysql-test/./r/ipv6.result
-- Installing: /mysql/software/mysql-test/./r/archive_bitfield.result
-- Installing: /mysql/software/mysql-test/./r/have_binlog_format_mixed.require
-- Installing: /mysql/software/mysql-test/./r/func_crypt.result
-- Installing: /mysql/software/mysql-test/./r/testdb_only.require
-- Installing: /mysql/software/mysql-test/./r/partition_charset.result
-- Installing: /mysql/software/mysql-test/./r/sp_sync.result
-- Installing: /mysql/software/mysql-test/./r/ssl_crl_clients.result
-- Installing: /mysql/software/mysql-test/./r/disconnect_on_expired_password_default.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mysql_lock.result
-- Installing: /mysql/software/mysql-test/./r/partition_mgm_err2.result
-- Installing: /mysql/software/mysql-test/./r/query_cache.result
-- Installing: /mysql/software/mysql-test/./r/have_utf32.require
-- Installing: /mysql/software/mysql-test/./r/handler_read_last.result
-- Installing: /mysql/software/mysql-test/./r/type_temporal_fractional.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_loosescan.result
-- Installing: /mysql/software/mysql-test/./r/have_sjis.require
-- Installing: /mysql/software/mysql-test/./r/myisam_row_rpl.result
-- Installing: /mysql/software/mysql-test/./r/fulltext_var.result
-- Installing: /mysql/software/mysql-test/./r/upgrade.result
-- Installing: /mysql/software/mysql-test/./r/sql_mode.result
-- Installing: /mysql/software/mysql-test/./r/myisam_mrr.result
-- Installing: /mysql/software/mysql-test/./r/myisam-system.result
-- Installing: /mysql/software/mysql-test/./r/grant2.result
-- Installing: /mysql/software/mysql-test/./r/type_set.result
-- Installing: /mysql/software/mysql-test/./r/select_icp_mrr_bka.result
-- Installing: /mysql/software/mysql-test/./r/func_group_innodb.result
-- Installing: /mysql/software/mysql-test/./r/signal_demo2.result
-- Installing: /mysql/software/mysql-test/./r/ctype_filesystem.result
-- Installing: /mysql/software/mysql-test/./r/myisam-blob.result
-- Installing: /mysql/software/mysql-test/./r/partition_exchange.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_debug.result
-- Installing: /mysql/software/mysql-test/./r/subquery_all.result
-- Installing: /mysql/software/mysql-test/./r/file_contents.result
-- Installing: /mysql/software/mysql-test/./r/have_ssl.require
-- Installing: /mysql/software/mysql-test/./r/lock_multi.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_disabled.result
-- Installing: /mysql/software/mysql-test/./r/type_bit_innodb.result
-- Installing: /mysql/software/mysql-test/./r/merge-big.result
-- Installing: /mysql/software/mysql-test/./r/have_symlink.require
-- Installing: /mysql/software/mysql-test/./r/func_time.result
-- Installing: /mysql/software/mysql-test/./r/sp-dynamic.result
-- Installing: /mysql/software/mysql-test/./r/sp-no-code.result
-- Installing: /mysql/software/mysql-test/./r/partition_list.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_all.result
-- Installing: /mysql/software/mysql-test/./r/multi_plugin_load_add2.result
-- Installing: /mysql/software/mysql-test/./r/outfile.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_table2.result
-- Installing: /mysql/software/mysql-test/./r/lowercase1.require
-- Installing: /mysql/software/mysql-test/./r/system_mysql_db.result
-- Installing: /mysql/software/mysql-test/./r/type_binary.result
-- Installing: /mysql/software/mysql-test/./r/not_openssl.require
-- Installing: /mysql/software/mysql-test/./r/func_gconcat.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_none_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/func_concat.result
-- Installing: /mysql/software/mysql-test/./r/loaddata_autocom_innodb.result
-- Installing: /mysql/software/mysql-test/./r/read_many_rows_innodb.result
-- Installing: /mysql/software/mysql-test/./r/lowercase0.require
-- Installing: /mysql/software/mysql-test/./r/partition_innodb_stmt.result
-- Installing: /mysql/software/mysql-test/./r/partition_key_cache.result
-- Installing: /mysql/software/mysql-test/./r/bug46080.result
-- Installing: /mysql/software/mysql-test/./r/mysql_locale_posix.result
-- Installing: /mysql/software/mysql-test/./r/mysql_comments.result
-- Installing: /mysql/software/mysql-test/./r/mysqlcheck.result
-- Installing: /mysql/software/mysql-test/./r/drop_debug.result
-- Installing: /mysql/software/mysql-test/./r/windows.result
-- Installing: /mysql/software/mysql-test/./r/func_aes_misc.result
-- Installing: /mysql/software/mysql-test/./r/group_min_max.result
-- Installing: /mysql/software/mysql-test/./r/type_ranges.result
-- Installing: /mysql/software/mysql-test/./r/partition_blackhole.result
-- Installing: /mysql/software/mysql-test/./r/partition_not_windows.result
-- Installing: /mysql/software/mysql-test/./r/ctype_ldml.result
-- Installing: /mysql/software/mysql-test/./r/temporal_literal.result
-- Installing: /mysql/software/mysql-test/./r/func_group_innodb_16k.result
-- Installing: /mysql/software/mysql-test/./r/foreign_key.result
-- Installing: /mysql/software/mysql-test/./r/ctype_create.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_innodb_none_bka.result
-- Installing: /mysql/software/mysql-test/./r/ssl-big.result
-- Installing: /mysql/software/mysql-test/./r/varbinary.result
-- Installing: /mysql/software/mysql-test/./r/mysqlbinlog_raw_mode.result
-- Installing: /mysql/software/mysql-test/./r/user_var.result
-- Installing: /mysql/software/mysql-test/./r/partition_myisam.result
-- Installing: /mysql/software/mysql-test/./r/sort_buffer_size_functionality.result
-- Installing: /mysql/software/mysql-test/./r/partition_innodb_plugin.result
-- Installing: /mysql/software/mysql-test/./r/func_str.result
-- Installing: /mysql/software/mysql-test/./r/trigger-trans.result
-- Installing: /mysql/software/mysql-test/./r/init_file.result
-- Installing: /mysql/software/mysql-test/./r/func_in_icp.result
-- Installing: /mysql/software/mysql-test/./r/ipv4_as_ipv6.result
-- Installing: /mysql/software/mysql-test/./r/comment_column2.result
-- Installing: /mysql/software/mysql-test/./r/windows.require
-- Installing: /mysql/software/mysql-test/./r/myisam_explain_json_non_select_all.result
-- Installing: /mysql/software/mysql-test/./r/subselect_notembedded.result
-- Installing: /mysql/software/mysql-test/./r/have_geometry.require
-- Installing: /mysql/software/mysql-test/./r/wl6301_1_not_windows.result
-- Installing: /mysql/software/mysql-test/./r/func_in_icp_mrr.result
-- Installing: /mysql/software/mysql-test/./r/temp_table.result
-- Installing: /mysql/software/mysql-test/./r/have_outfile.require
-- Installing: /mysql/software/mysql-test/./r/have_compress.require
-- Installing: /mysql/software/mysql-test/./r/information_schema_part.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_with_views.result
-- Installing: /mysql/software/mysql-test/./r/type_newdecimal.result
-- Installing: /mysql/software/mysql-test/./r/signal_demo1.result
-- Installing: /mysql/software/mysql-test/./r/fulltext_multi.result
-- Installing: /mysql/software/mysql-test/./r/tablelock.result
-- Installing: /mysql/software/mysql-test/./r/unsafe_binlog_innodb.result
-- Installing: /mysql/software/mysql-test/./r/comment_column.result
-- Installing: /mysql/software/mysql-test/./r/init_connect.result
-- Installing: /mysql/software/mysql-test/./r/replace.result
-- Installing: /mysql/software/mysql-test/./r/ctype_cp932_binlog_row.result
-- Installing: /mysql/software/mysql-test/./r/handler_innodb.result
-- Installing: /mysql/software/mysql-test/./r/subselect_innodb.result
-- Installing: /mysql/software/mysql-test/./r/join_cache_nojb.result
-- Installing: /mysql/software/mysql-test/./r/function_defaults_notembedded.result
-- Installing: /mysql/software/mysql-test/./r/alias.result
-- Installing: /mysql/software/mysql-test/./r/show_profile.result
-- Installing: /mysql/software/mysql-test/./r/order_by_none.result
-- Installing: /mysql/software/mysql-test/./r/multi_plugin_load.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf8mb4_myisam.result
-- Installing: /mysql/software/mysql-test/./r/ssl_crl_clients-valid.result
-- Installing: /mysql/software/mysql-test/./r/ctype_cp1250_ch.result
-- Installing: /mysql/software/mysql-test/./r/count_distinct3.result
-- Installing: /mysql/software/mysql-test/./r/sp-lock.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_none_bka.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_innodb_all_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/events_microsec.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_sha256_tls.result
-- Installing: /mysql/software/mysql-test/./r/slave-stopped.result
-- Installing: /mysql/software/mysql-test/./r/myisam.result
-- Installing: /mysql/software/mysql-test/./r/multi_update2.result
-- Installing: /mysql/software/mysql-test/./r/strict_autoinc_2innodb.result
-- Installing: /mysql/software/mysql-test/./r/user_var-binlog.result
-- Installing: /mysql/software/mysql-test/./r/flush2.result
-- Installing: /mysql/software/mysql-test/./r/index_merge_myisam.result
-- Installing: /mysql/software/mysql-test/./r/default.result
-- Installing: /mysql/software/mysql-test/./r/events_2.result
-- Installing: /mysql/software/mysql-test/./r/have_debug_sync.require
-- Installing: /mysql/software/mysql-test/./r/sysdate_is_now.result
-- Installing: /mysql/software/mysql-test/./r/ctype_mb.result
-- Installing: /mysql/software/mysql-test/./r/not_partition.result
-- Installing: /mysql/software/mysql-test/./r/func_in_mrr.result
-- Installing: /mysql/software/mysql-test/./r/ssl_8k_key.result
-- Installing: /mysql/software/mysql-test/./r/subquery_nomat_nosj_bka.result
-- Installing: /mysql/software/mysql-test/./r/partition_rename_longfilename.result
-- Installing: /mysql/software/mysql-test/./r/bug58669.result
-- Installing: /mysql/software/mysql-test/./r/lock_tables_lost_commit.result
-- Installing: /mysql/software/mysql-test/./r/count_distinct.result
-- Installing: /mysql/software/mysql-test/./r/implicit_char_to_num_conversion.result
-- Installing: /mysql/software/mysql-test/./r/partition_sync.result
-- Installing: /mysql/software/mysql-test/./r/symlink.result
-- Installing: /mysql/software/mysql-test/./r/mysqlshow.result
-- Installing: /mysql/software/mysql-test/./r/log_tables.result
-- Installing: /mysql/software/mysql-test/./r/range_icp.result
-- Installing: /mysql/software/mysql-test/./r/lowercase2.require
-- Installing: /mysql/software/mysql-test/./r/archive.result
-- Installing: /mysql/software/mysql-test/./r/create_not_windows.result
-- Installing: /mysql/software/mysql-test/./r/have_tis620.require
-- Installing: /mysql/software/mysql-test/./r/analyze.result
-- Installing: /mysql/software/mysql-test/./r/select_none_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/func_in_mrr_cost.result
-- Installing: /mysql/software/mysql-test/./r/flush.result
-- Installing: /mysql/software/mysql-test/./r/myisam_crash_before_flush_keys.result
-- Installing: /mysql/software/mysql-test/./r/gis-precise.result
-- Installing: /mysql/software/mysql-test/./r/optimizer_switch.result
-- Installing: /mysql/software/mysql-test/./r/myisam_icp_all.result
-- Installing: /mysql/software/mysql-test/./r/multi_update.result
-- Installing: /mysql/software/mysql-test/./r/parser_precedence.result
-- Installing: /mysql/software/mysql-test/./r/limit.result
-- Installing: /mysql/software/mysql-test/./r/consistent_snapshot.result
-- Installing: /mysql/software/mysql-test/./r/mysql-bug41486.result
-- Installing: /mysql/software/mysql-test/./r/index_merge_innodb.result
-- Installing: /mysql/software/mysql-test/./r/key_primary.result
-- Installing: /mysql/software/mysql-test/./r/grant.result
-- Installing: /mysql/software/mysql-test/./r/ctype_gbk_binlog.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_firstmatch.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_innodb_none.result
-- Installing: /mysql/software/mysql-test/./r/partition_bug18198.result
-- Installing: /mysql/software/mysql-test/./r/subquery_none.result
-- Installing: /mysql/software/mysql-test/./r/events_restart.result
-- Installing: /mysql/software/mysql-test/./r/insert_select.result
-- Installing: /mysql/software/mysql-test/./r/not_true.require
-- Installing: /mysql/software/mysql-test/./r/client_xml.result
-- Installing: /mysql/software/mysql-test/./r/constraints.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_dupsweed_bka.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf16_uca.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf8.result
-- Installing: /mysql/software/mysql-test/./r/compress.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth.result
-- Installing: /mysql/software/mysql-test/./r/mysqladmin.result
-- Installing: /mysql/software/mysql-test/./r/index_merge_insert-and-replace.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf16_def.result
-- Installing: /mysql/software/mysql-test/./r/is_embedded.require
-- Installing: /mysql/software/mysql-test/./r/subquery_all_bka.result
-- Installing: /mysql/software/mysql-test/./r/log_tables_upgrade.result
-- Installing: /mysql/software/mysql-test/./r/innodb_ignore_builtin.result
-- Installing: /mysql/software/mysql-test/./r/bug33509.result
-- Installing: /mysql/software/mysql-test/./r/func_timestamp.result
-- Installing: /mysql/software/mysql-test/./r/have_cp866.require
-- Installing: /mysql/software/mysql-test/./r/partition_column_prune.result
-- Installing: /mysql/software/mysql-test/./r/archive_plugin.result
-- Installing: /mysql/software/mysql-test/./r/merge_innodb.result
-- Installing: /mysql/software/mysql-test/./r/type_time.result
-- Installing: /mysql/software/mysql-test/./r/events_stress.result
-- Installing: /mysql/software/mysql-test/./r/not_valgrind.require
-- Installing: /mysql/software/mysql-test/./r/auth_rpl.result
-- Installing: /mysql/software/mysql-test/./r/greedy_search.result
-- Installing: /mysql/software/mysql-test/./r/table_definition_cache_functionality.result
-- Installing: /mysql/software/mysql-test/./r/check.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_dupsweed_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/lock.result
-- Installing: /mysql/software/mysql-test/./r/ps_3innodb.result
-- Installing: /mysql/software/mysql-test/./r/bug47671.result
-- Installing: /mysql/software/mysql-test/./r/partition_windows.result
-- Installing: /mysql/software/mysql-test/./r/select_icp_mrr.result
-- Installing: /mysql/software/mysql-test/./r/multi_statement.result
-- Installing: /mysql/software/mysql-test/./r/ctype_cp932.result
-- Installing: /mysql/software/mysql-test/./r/fulltext.result
-- Installing: /mysql/software/mysql-test/./r/ssl_and_innodb.result
-- Installing: /mysql/software/mysql-test/./r/join.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_table_grant.result
-- Installing: /mysql/software/mysql-test/./r/ddl_i18n_utf8.result
-- Installing: /mysql/software/mysql-test/./r/openssl_1.result
-- Installing: /mysql/software/mysql-test/./r/flush_read_lock.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_mat.result
-- Installing: /mysql/software/mysql-test/./r/sp-threads.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_firstmatch_bka.result
-- Installing: /mysql/software/mysql-test/./r/ctype_hebrew.result
-- Installing: /mysql/software/mysql-test/./r/optimizer_debug_sync.result
-- Installing: /mysql/software/mysql-test/./r/server_id1.require
-- Installing: /mysql/software/mysql-test/./r/innodb_explain_non_select_all.result
-- Installing: /mysql/software/mysql-test/./r/join_crash.result
-- Installing: /mysql/software/mysql-test/./r/have_optimizer_switch.require
-- Installing: /mysql/software/mysql-test/./r/mysql_plugin.result
-- Installing: /mysql/software/mysql-test/./r/log_tables-big.result
-- Installing: /mysql/software/mysql-test/./r/archive_debug.result
-- Installing: /mysql/software/mysql-test/./r/have_local_infile.require
-- Installing: /mysql/software/mysql-test/./r/lowercase_table_qcache.result
-- Installing: /mysql/software/mysql-test/./r/bug39022.result
-- Installing: /mysql/software/mysql-test/./r/connect.result
-- Installing: /mysql/software/mysql-test/./r/sp-fib.result
-- Installing: /mysql/software/mysql-test/./r/sp_stress_case.result
-- Installing: /mysql/software/mysql-test/./r/read_only_innodb.result
-- Installing: /mysql/software/mysql-test/./r/ps_ddl.result
-- Installing: /mysql/software/mysql-test/./r/xml.result
-- Installing: /mysql/software/mysql-test/./r/type_newdecimal-big.result
-- Installing: /mysql/software/mysql-test/./r/disconnect_on_expired_password_off.result
-- Installing: /mysql/software/mysql-test/./r/validate_password_plugin.result
-- Installing: /mysql/software/mysql-test/./r/multi_update_innodb.result
-- Installing: /mysql/software/mysql-test/./r/partition_column.result
-- Installing: /mysql/software/mysql-test/./r/single_delete_update.result
-- Installing: /mysql/software/mysql-test/./r/innodb_log_file_size_functionality.result
-- Installing: /mysql/software/mysql-test/./r/partition_index_myisam.result
-- Installing: /mysql/software/mysql-test/./r/have_nodebug.require
-- Installing: /mysql/software/mysql-test/./r/profiling.result
-- Installing: /mysql/software/mysql-test/./r/partition_disabled.result
-- Installing: /mysql/software/mysql-test/./r/mysql.result
-- Installing: /mysql/software/mysql-test/./r/index_merge_update.result
-- Installing: /mysql/software/mysql-test/./r/keywords.result
-- Installing: /mysql/software/mysql-test/./r/sp_trans.result
-- Installing: /mysql/software/mysql-test/./r/innodb_recovery_with_upper_case_names.result
-- Installing: /mysql/software/mysql-test/./r/information_schema_db.result
-- Installing: /mysql/software/mysql-test/./r/partition_symlink.result
-- Installing: /mysql/software/mysql-test/./r/plugin_load.result
-- Installing: /mysql/software/mysql-test/./r/table_open_cache_functionality.result
-- Installing: /mysql/software/mysql-test/./r/ctype_cp1251.result
-- Installing: /mysql/software/mysql-test/./r/gis-rt-precise.result
-- Installing: /mysql/software/mysql-test/./r/errors.result
-- Installing: /mysql/software/mysql-test/./r/strict_autoinc_1myisam.result
-- Installing: /mysql/software/mysql-test/./r/subquery_nomat_nosj_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/events_bugs.result
-- Installing: /mysql/software/mysql-test/./r/bug46261.result
-- Installing: /mysql/software/mysql-test/./r/type_float.result
-- Installing: /mysql/software/mysql-test/./r/csv.result
-- Installing: /mysql/software/mysql-test/./r/error_simulation.result
-- Installing: /mysql/software/mysql-test/./r/sp-security.result
-- Installing: /mysql/software/mysql-test/./r/group_by.result
-- Installing: /mysql/software/mysql-test/./r/select_safe.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_dupsweed.result
-- Installing: /mysql/software/mysql-test/./r/join_cache_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/variables-notembedded.result
-- Installing: /mysql/software/mysql-test/./r/csv_not_null.result
-- Installing: /mysql/software/mysql-test/./r/preload.result
-- Installing: /mysql/software/mysql-test/./r/have_cp1251.require
-- Installing: /mysql/software/mysql-test/./r/server_id.require
-- Installing: /mysql/software/mysql-test/./r/not_embedded_server.result
-- Installing: /mysql/software/mysql-test/./r/check_var_limit.require
-- Installing: /mysql/software/mysql-test/./r/filesort_debug.result
-- Installing: /mysql/software/mysql-test/./r/sp_validation.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_mat_bka.result
-- Installing: /mysql/software/mysql-test/./r/implicit_commit.result
-- Installing: /mysql/software/mysql-test/./r/myisam_mrr_all.result
-- Installing: /mysql/software/mysql-test/./r/comments.result
-- Installing: /mysql/software/mysql-test/./r/ctype_errors.result
-- Installing: /mysql/software/mysql-test/./r/select_all_bka.result
-- Installing: /mysql/software/mysql-test/./r/join_cache_bka.result
-- Installing: /mysql/software/mysql-test/./r/have_utf8mb4.require
-- Installing: /mysql/software/mysql-test/./r/ctype_utf8mb4_heap.result
-- Installing: /mysql/software/mysql-test/./r/sp-vars.result
-- Installing: /mysql/software/mysql-test/./r/ctype_gbk.result
-- Installing: /mysql/software/mysql-test/./r/events_scheduling.result
-- Installing: /mysql/software/mysql-test/./r/mysqld--defaults-file.result
-- Installing: /mysql/software/mysql-test/./r/dynamic_tracing.result
-- Installing: /mysql/software/mysql-test/./r/gcc296.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_sha256_server_default.result
-- Installing: /mysql/software/mysql-test/./r/timezone3.result
-- Installing: /mysql/software/mysql-test/./r/wl6443_deprecation.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_qa.result
-- Installing: /mysql/software/mysql-test/./r/trigger_notembedded.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_all_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/func_if.result
-- Installing: /mysql/software/mysql-test/./r/sum_distinct-big.result
-- Installing: /mysql/software/mysql-test/./r/mysqldump_restore.result
-- Installing: /mysql/software/mysql-test/./r/type_bit.result
-- Installing: /mysql/software/mysql-test/./r/innodb_pk_extension_on.result
-- Installing: /mysql/software/mysql-test/./r/range_all.result
-- Installing: /mysql/software/mysql-test/./r/have_ujis.require
-- Installing: /mysql/software/mysql-test/./r/innodb_icp.result
-- Installing: /mysql/software/mysql-test/./r/grant_lowercase_fs.result
-- Installing: /mysql/software/mysql-test/./r/have_debug.require
-- Installing: /mysql/software/mysql-test/./r/outfile_loaddata.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf32.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_fs_off.result
-- Installing: /mysql/software/mysql-test/./r/partition_mgm.result
-- Installing: /mysql/software/mysql-test/./r/type_blob.result
-- Installing: /mysql/software/mysql-test/./r/have_ndbapi_examples.require
-- Installing: /mysql/software/mysql-test/./r/deadlock_innodb.result
-- Installing: /mysql/software/mysql-test/./r/information_schema.result
-- Installing: /mysql/software/mysql-test/./r/trigger.result
-- Installing: /mysql/software/mysql-test/./r/information_schema_chmod.result
-- Installing: /mysql/software/mysql-test/./r/ctype_sjis.result
-- Installing: /mysql/software/mysql-test/./r/not_windows.require
-- Installing: /mysql/software/mysql-test/./r/server_uuid.result
-- Installing: /mysql/software/mysql-test/./r/information_schema_routines.result
-- Installing: /mysql/software/mysql-test/./r/flush_block_commit.result
-- Installing: /mysql/software/mysql-test/./r/mysql_embedded.result
-- Installing: /mysql/software/mysql-test/./r/have_eucjpms.require
-- Installing: /mysql/software/mysql-test/./r/func_sapdb.result
-- Installing: /mysql/software/mysql-test/./r/myisam_mrr_icp.result
-- Installing: /mysql/software/mysql-test/./r/myisam_recover.result
-- Installing: /mysql/software/mysql-test/./r/type_decimal.result
-- Installing: /mysql/software/mysql-test/./r/have_ndb_extra.require
-- Installing: /mysql/software/mysql-test/./r/myisam_explain_non_select_all.result
-- Installing: /mysql/software/mysql-test/./r/fulltext_update.result
-- Installing: /mysql/software/mysql-test/./r/have_met_timezone.require
-- Installing: /mysql/software/mysql-test/./r/func_system.result
-- Installing: /mysql/software/mysql-test/./r/range_none.result
-- Installing: /mysql/software/mysql-test/./r/ansi.result
-- Installing: /mysql/software/mysql-test/./r/flush_table.result
-- Installing: /mysql/software/mysql-test/./r/xa.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf16.result
-- Installing: /mysql/software/mysql-test/./r/sp-error.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_loosescan_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/sum_distinct.result
-- Installing: /mysql/software/mysql-test/./r/wl6219-merge.result
-- Installing: /mysql/software/mysql-test/./r/almost_full.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_innodb_none_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/have_euckr.require
-- Installing: /mysql/software/mysql-test/./r/bootstrap.result
-- Installing: /mysql/software/mysql-test/./r/perror-win.result
-- Installing: /mysql/software/mysql-test/./r/have_big5.require
-- Installing: /mysql/software/mysql-test/./r/innodb_mysql_sync.result
-- Installing: /mysql/software/mysql-test/./r/myisam_icp_none.result
-- Installing: /mysql/software/mysql-test/./r/ctype_many.result
-- Installing: /mysql/software/mysql-test/./r/type_timestamp_explicit.result
-- Installing: /mysql/software/mysql-test/./r/merge_mmap.result
-- Installing: /mysql/software/mysql-test/./r/sp-ucs2.result
-- Installing: /mysql/software/mysql-test/./r/named_pipe.result
-- Installing: /mysql/software/mysql-test/./r/partition_innodb.result
-- Installing: /mysql/software/mysql-test/./r/thread_cache_size_functionality.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_loosescan_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/case_insensitive_file_system.require
-- Installing: /mysql/software/mysql-test/./r/date_formats.result
-- Installing: /mysql/software/mysql-test/./r/have_ssl_is_yes_or_disabled_only.require
-- Installing: /mysql/software/mysql-test/./r/type_nchar.result
-- Installing: /mysql/software/mysql-test/./r/rewrite_slow_log.result
-- Installing: /mysql/software/mysql-test/./r/information_schema_parameters.result
-- Installing: /mysql/software/mysql-test/./r/partition_federated.result
-- Installing: /mysql/software/mysql-test/./r/mysqldump-no-binlog.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_innodb_all.result
-- Installing: /mysql/software/mysql-test/./r/multi_update_tiny_hash.result
-- Installing: /mysql/software/mysql-test/./r/gis-debug.result
-- Installing: /mysql/software/mysql-test/./r/variables-big.result
-- Installing: /mysql/software/mysql-test/./r/wl6219-csv.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_ps_no_prot.result
-- Installing: /mysql/software/mysql-test/./r/truncate_coverage.result
-- Installing: /mysql/software/mysql-test/./r/ctype_binary.result
-- Installing: /mysql/software/mysql-test/./r/ctype_cp932_binlog_stm.result
-- Installing: /mysql/software/mysql-test/./r/innodb_icp_none.result
-- Installing: /mysql/software/mysql-test/./r/system_mysql_db_refs.result
-- Installing: /mysql/software/mysql-test/./r/type_date.result
-- Installing: /mysql/software/mysql-test/./r/func_analyse.result
-- Installing: /mysql/software/mysql-test/./r/ctype_eucjpms.result
-- Installing: /mysql/software/mysql-test/./r/ndb_default_cluster.require
-- Installing: /mysql/software/mysql-test/./r/have_binlog_format_row.require
-- Installing: /mysql/software/mysql-test/./r/explain_json_all.result
-- Installing: /mysql/software/mysql-test/./r/comment_index.result
-- Installing: /mysql/software/mysql-test/./r/myisam_mrr_cost_all.result
-- Installing: /mysql/software/mysql-test/./r/mysqlslap.result
-- Installing: /mysql/software/mysql-test/./r/is_debug_build.require
-- Installing: /mysql/software/mysql-test/./r/ctype_ucs.result
-- Installing: /mysql/software/mysql-test/./r/strict.result
-- Installing: /mysql/software/mysql-test/./r/skip_name_resolve.result
-- Installing: /mysql/software/mysql-test/./r/func_compress.result
-- Installing: /mysql/software/mysql-test/./r/ddl_i18n_koi8r.result
-- Installing: /mysql/software/mysql-test/./r/myisam_mrr_none.result
-- Installing: /mysql/software/mysql-test/./r/information_schema-big.result
-- Installing: /mysql/software/mysql-test/./r/view_grant.result
-- Installing: /mysql/software/mysql-test/./r/backup.result
-- Installing: /mysql/software/mysql-test/./r/subquery_mat.result
-- Installing: /mysql/software/mysql-test/./r/have_koi8r.require
-- Installing: /mysql/software/mysql-test/./r/sp-big.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_qa_2.result
-- Installing: /mysql/software/mysql-test/./r/mysql-bug45236.result
-- Installing: /mysql/software/mysql-test/./r/range_icp_mrr.result
-- Installing: /mysql/software/mysql-test/./r/check_auto_permission.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_merge.result
-- Installing: /mysql/software/mysql-test/./r/partition_range.result
-- Installing: /mysql/software/mysql-test/./r/disabled_replication.result
-- Installing: /mysql/software/mysql-test/./r/kill_debug.result
-- Installing: /mysql/software/mysql-test/./r/grant_cache.result
-- Installing: /mysql/software/mysql-test/./r/log_state_bug33693.result
-- Installing: /mysql/software/mysql-test/./r/overflow.result
-- Installing: /mysql/software/mysql-test/./r/ssl-sha512.result
-- Installing: /mysql/software/mysql-test/./r/log_tables_debug.result
-- Installing: /mysql/software/mysql-test/./r/subquery_mat_none.result
-- Installing: /mysql/software/mysql-test/./r/mysql_protocols.result
-- Installing: /mysql/software/mysql-test/./r/bug17076131.result
-- Installing: /mysql/software/mysql-test/./r/timezone4.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_qa_1.result
-- Installing: /mysql/software/mysql-test/./r/myisampack.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mrr_all.result
-- Installing: /mysql/software/mysql-test/./r/show_check.result
-- Installing: /mysql/software/mysql-test/./r/func_aes_ofb.result
-- Installing: /mysql/software/mysql-test/./r/no-threads.result
-- Installing: /mysql/software/mysql-test/./r/host_cache_size_functionality.result
-- Installing: /mysql/software/mysql-test/./r/shm.result
-- Installing: /mysql/software/mysql-test/./r/view_alias.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mrr_cost_icp.result
-- Installing: /mysql/software/mysql-test/./r/func_equal.result
-- Installing: /mysql/software/mysql-test/./r/strict_autoinc_3heap.result
-- Installing: /mysql/software/mysql-test/./r/isam.result
-- Installing: /mysql/software/mysql-test/./r/create.result
-- Installing: /mysql/software/mysql-test/./r/events_time_zone.result
-- Installing: /mysql/software/mysql-test/./r/ctype_filename.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_none_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/ctype_ujis.result
-- Installing: /mysql/software/mysql-test/./r/select_all.result
-- Installing: /mysql/software/mysql-test/./r/flush_read_lock_kill.result
-- Installing: /mysql/software/mysql-test/./r/partition_binlog.result
-- Installing: /mysql/software/mysql-test/./r/signal.result
-- Installing: /mysql/software/mysql-test/./r/log_state.result
-- Installing: /mysql/software/mysql-test/./r/subselect_debug.result
-- Installing: /mysql/software/mysql-test/./r/type_year.result
-- Installing: /mysql/software/mysql-test/./r/partition_not_blackhole.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_firstmatch_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/binlog_tx_isolation.result
-- Installing: /mysql/software/mysql-test/./r/heap_auto_increment.result
-- Installing: /mysql/software/mysql-test/./r/ssl_connect.result
-- Installing: /mysql/software/mysql-test/./r/func_like.result
-- Installing: /mysql/software/mysql-test/./r/innodb_icp_all.result
-- Installing: /mysql/software/mysql-test/./r/synchronization.result
-- Installing: /mysql/software/mysql-test/./r/partition_hash.result
-- Installing: /mysql/software/mysql-test/./r/type_timestamp.result
-- Installing: /mysql/software/mysql-test/./r/innodb_pk_extension_off.result
-- Installing: /mysql/software/mysql-test/./r/join_nested.result
-- Installing: /mysql/software/mysql-test/./r/status2.result
-- Installing: /mysql/software/mysql-test/./r/mysqlbinlog_raw_mode_win.result
-- Installing: /mysql/software/mysql-test/./r/wl6301_2_not_windows.result
-- Installing: /mysql/software/mysql-test/./r/have_profiling.require
-- Installing: /mysql/software/mysql-test/./r/subquery_all_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/symlink_windows.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf32_uca.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_dupsweed_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/function_defaults.result
-- Installing: /mysql/software/mysql-test/./r/lock_multi_bug38499.result
-- Installing: /mysql/software/mysql-test/./r/archive-big.result
-- Installing: /mysql/software/mysql-test/./r/mysql_upgrade_ssl.result
-- Installing: /mysql/software/mysql-test/./r/archive_gis.result
-- Installing: /mysql/software/mysql-test/./r/events_trans.result
-- Installing: /mysql/software/mysql-test/./r/ctype_latin1.result
-- Installing: /mysql/software/mysql-test/./r/not_ssl.require
-- Installing: /mysql/software/mysql-test/./r/secure_file_priv_win.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_notembedded.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf16le.result
-- Installing: /mysql/software/mysql-test/./r/skip_log_bin.result
-- Installing: /mysql/software/mysql-test/./r/ssl_compress.result
-- Installing: /mysql/software/mysql-test/./r/rowid_order_innodb.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_table4.result
-- Installing: /mysql/software/mysql-test/./r/subquery_nomat_nosj.result
-- Installing: /mysql/software/mysql-test/./r/bigint.result
-- Installing: /mysql/software/mysql-test/./r/mysql_config_editor.result
-- Installing: /mysql/software/mysql-test/./r/cast.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_mixed_tmpdir_innodb.result
-- Installing: /mysql/software/mysql-test/./r/fulltext_cache.result
-- Installing: /mysql/software/mysql-test/./r/heap.result
-- Installing: /mysql/software/mysql-test/./r/have_ucs2.require
-- Installing: /mysql/software/mysql-test/./r/partition_order.result
-- Installing: /mysql/software/mysql-test/./r/mysql_binary_mode.result
-- Installing: /mysql/software/mysql-test/./r/mysqlbinlog_debug.result
-- Installing: /mysql/software/mysql-test/./r/ctype_like_range.result
-- Installing: /mysql/software/mysql-test/./r/func_default.result
-- Installing: /mysql/software/mysql-test/./r/signal_demo3.result
-- Installing: /mysql/software/mysql-test/./r/signal_sqlmode.result
-- Installing: /mysql/software/mysql-test/./r/blackhole_plugin.result
-- Installing: /mysql/software/mysql-test/./r/parser_not_embedded.result
-- Installing: /mysql/software/mysql-test/./r/python_with_json.require
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_sha256.result
-- Installing: /mysql/software/mysql-test/./r/bug46760.result
-- Installing: /mysql/software/mysql-test/./r/temp_pool.result
-- Installing: /mysql/software/mysql-test/./r/innodb_explain_non_select_none.result
-- Installing: /mysql/software/mysql-test/./r/partition_open_files_limit.result
-- Installing: /mysql/software/mysql-test/./r/read_only.result
-- Installing: /mysql/software/mysql-test/./r/events_trans_notembedded.result
-- Installing: /mysql/software/mysql-test/./r/ssl-crl-revoked-crl.result
-- Installing: /mysql/software/mysql-test/./r/sp.result
-- Installing: /mysql/software/mysql-test/./r/func_encrypt_ucs2.result
-- Installing: /mysql/software/mysql-test/./r/func_math.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_type_functionality.result
-- Installing: /mysql/software/mysql-test/./r/func_in_none.result
-- Installing: /mysql/software/mysql-test/./r/partition_locking_4.result
-- Installing: /mysql/software/mysql-test/./r/ssl_crl_clients_valid.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_utf8.result
-- Installing: /mysql/software/mysql-test/./r/func_misc.result
-- Installing: /mysql/software/mysql-test/./r/metadata.result
-- Installing: /mysql/software/mysql-test/./r/join_outer_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_sha256_2.result
-- Installing: /mysql/software/mysql-test/./r/variables_community.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_view.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mrr_none.result
-- Installing: /mysql/software/mysql-test/./r/ctype_ujis_ucs2.result
-- Installing: /mysql/software/mysql-test/./r/wl6219-memory.result
-- Installing: /mysql/software/mysql-test/./r/handler_myisam.result
-- Installing: /mysql/software/mysql-test/./r/ssl.result
-- Installing: /mysql/software/mysql-test/./r/timezone.result
-- Installing: /mysql/software/mysql-test/./r/truncate.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_table3.result
-- Installing: /mysql/software/mysql-test/./r/mix2_myisam_ucs2.result
-- Installing: /mysql/software/mysql-test/./r/partition_datatype.result
-- Installing: /mysql/software/mysql-test/./r/order_by_all.result
-- Installing: /mysql/software/mysql-test/./r/func_in_all.result
-- Installing: /mysql/software/mysql-test/./r/trans_read_only.result
-- Installing: /mysql/software/mysql-test/./r/order_by_sortkey.result
-- Installing: /mysql/software/mysql-test/./r/execution_constants.result
-- Installing: /mysql/software/mysql-test/./r/timezone2.result
-- Installing: /mysql/software/mysql-test/./r/archive_no_symlink.result
-- Installing: /mysql/software/mysql-test/./r/key.result
-- Installing: /mysql/software/mysql-test/./r/renamedb.result
-- Installing: /mysql/software/mysql-test/./r/schema.result
-- Installing: /mysql/software/mysql-test/./r/ps_11bugs.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mrr_cost_all.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_innodb_none_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/derived.result
-- Installing: /mysql/software/mysql-test/./r/olap.result
-- Installing: /mysql/software/mysql-test/./r/select_none_bka.result
-- Installing: /mysql/software/mysql-test/./r/ps_4heap.result
-- Installing: /mysql/software/mysql-test/./r/packet.result
-- Installing: /mysql/software/mysql-test/./r/delayed.result
-- Installing: /mysql/software/mysql-test/./r/greedy_optimizer.result
-- Installing: /mysql/software/mysql-test/./r/case_sensitive_file_system.require
-- Installing: /mysql/software/mysql-test/./r/innodb_explain_json_non_select_none.result
-- Installing: /mysql/software/mysql-test/./r/long_tmpdir.result
-- Installing: /mysql/software/mysql-test/./r/mysqldump-max.result
-- Installing: /mysql/software/mysql-test/./r/have_binlog_format_statement.require
-- Installing: /mysql/software/mysql-test/./r/delete.result
-- Installing: /mysql/software/mysql-test/./r/empty_table.result
-- Installing: /mysql/software/mysql-test/./r/grant4.result
-- Installing: /mysql/software/mysql-test/./r/loaddata.result
-- Installing: /mysql/software/mysql-test/./r/rpl_extraColmaster_innodb.result
-- Installing: /mysql/software/mysql-test/./r/myisam_debug.result
-- Installing: /mysql/software/mysql-test/./r/update.result
-- Installing: /mysql/software/mysql-test/./r/count_distinct2.result
-- Installing: /mysql/software/mysql-test/./r/drop-no_root.result
-- Installing: /mysql/software/mysql-test/./r/plugin_auth_qa_3.result
-- Installing: /mysql/software/mysql-test/./r/partition_innodb_tablespace.result
-- Installing: /mysql/software/mysql-test/./r/func_op.result
-- Installing: /mysql/software/mysql-test/./r/have_crypt.require
-- Installing: /mysql/software/mysql-test/./r/null.result
-- Installing: /mysql/software/mysql-test/./r/fulltext_distinct.result
-- Installing: /mysql/software/mysql-test/./r/func_encrypt_nossl.result
-- Installing: /mysql/software/mysql-test/./r/explain_json_none.result
-- Installing: /mysql/software/mysql-test/./r/rpl_mysqldump_slave.result
-- Installing: /mysql/software/mysql-test/./r/innodb_explain_json_non_select_all.result
-- Installing: /mysql/software/mysql-test/./r/negation_elimination.result
-- Installing: /mysql/software/mysql-test/./r/func_aes_cfb128.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf8mb4_innodb.result
-- Installing: /mysql/software/mysql-test/./r/wait_timeout.result
-- Installing: /mysql/software/mysql-test/./r/type_varchar.result
-- Installing: /mysql/software/mysql-test/./r/dirty_close.result
-- Installing: /mysql/software/mysql-test/./r/status.result
-- Installing: /mysql/software/mysql-test/./r/grant3.result
-- Installing: /mysql/software/mysql-test/./r/type_uint.result
-- Installing: /mysql/software/mysql-test/./r/heap_btree.result
-- Installing: /mysql/software/mysql-test/./r/create_select_tmp.result
-- Installing: /mysql/software/mysql-test/./r/mysql_client_test_embedded.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf8mb4.result
-- Installing: /mysql/software/mysql-test/./r/join_cache_bnl.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mysql_lock2.result
-- Installing: /mysql/software/mysql-test/./r/fulltext_plugin.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mrr.result
-- Installing: /mysql/software/mysql-test/./r/rpl_colSize.result
-- Installing: /mysql/software/mysql-test/./r/mysql_client_test.result
-- Installing: /mysql/software/mysql-test/./r/mysqld--help-notwin.result
-- Installing: /mysql/software/mysql-test/./r/have_utf16.require
-- Installing: /mysql/software/mysql-test/./r/auto_increment.result
-- Installing: /mysql/software/mysql-test/./r/compare.result
-- Installing: /mysql/software/mysql-test/./r/plugin_not_embedded.result
-- Installing: /mysql/software/mysql-test/./r/subquery_mat_all.result
-- Installing: /mysql/software/mysql-test/./r/mix2_myisam.result
-- Installing: /mysql/software/mysql-test/./r/cache_innodb.result
-- Installing: /mysql/software/mysql-test/./r/select_all_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/slave-running.result
-- Installing: /mysql/software/mysql-test/./r/mysqlbinlog_mixed_or_statment.result
-- Installing: /mysql/software/mysql-test/./r/1st.result
-- Installing: /mysql/software/mysql-test/./r/ctype_recoding.result
-- Installing: /mysql/software/mysql-test/./r/perror.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_mat_bkaunique.result
-- Installing: /mysql/software/mysql-test/./r/show_processlist.result
-- Installing: /mysql/software/mysql-test/./r/have_binlog_rows_query.require
-- Installing: /mysql/software/mysql-test/./r/concurrent_innodb_safelog.result
-- Installing: /mysql/software/mysql-test/./r/wl6219-myisam.result
-- Installing: /mysql/software/mysql-test/./r/func_aes_cfb8.result
-- Installing: /mysql/software/mysql-test/./r/fulltext_order_by.result
-- Installing: /mysql/software/mysql-test/./r/innodb_mrr_icp.result
-- Installing: /mysql/software/mysql-test/./r/get_diagnostics.result
-- Installing: /mysql/software/mysql-test/./r/ctype_latin2_ch.result
-- Installing: /mysql/software/mysql-test/./r/ctype_ucs2_def.result
-- Installing: /mysql/software/mysql-test/./r/have_utf8.require
-- Installing: /mysql/software/mysql-test/./r/having.result
-- Installing: /mysql/software/mysql-test/./r/warnings.result
-- Installing: /mysql/software/mysql-test/./r/optimizer_bug12837084.result
-- Installing: /mysql/software/mysql-test/./r/null_key_icp.result
-- Installing: /mysql/software/mysql-test/./r/join_outer_innodb.result
-- Installing: /mysql/software/mysql-test/./r/func_test.result
-- Installing: /mysql/software/mysql-test/./r/type_enum.result
-- Installing: /mysql/software/mysql-test/./r/not_embedded.require
-- Installing: /mysql/software/mysql-test/./r/join_outer.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_loosescan_bka.result
-- Installing: /mysql/software/mysql-test/./r/func_set.result
-- Installing: /mysql/software/mysql-test/./r/distinct.result
-- Installing: /mysql/software/mysql-test/./r/range_mrr_cost.result
-- Installing: /mysql/software/mysql-test/./r/user_limits.result
-- Installing: /mysql/software/mysql-test/./r/one_thread_per_connection.require
-- Installing: /mysql/software/mysql-test/./r/lowercase_table.result
-- Installing: /mysql/software/mysql-test/./r/insert_notembedded.result
-- Installing: /mysql/software/mysql-test/./r/drop.result
-- Installing: /mysql/software/mysql-test/./r/lowercase_mixed_tmpdir.result
-- Installing: /mysql/software/mysql-test/./r/sp-bugs.result
-- Installing: /mysql/software/mysql-test/./r/flush_block_commit_notembedded.result
-- Installing: /mysql/software/mysql-test/./r/mysqlhotcopy_archive.result
-- Installing: /mysql/software/mysql-test/./r/round.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_all_bka.result
-- Installing: /mysql/software/mysql-test/./r/func_group.result
-- Installing: /mysql/software/mysql-test/./r/wl6219-upgrade.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_mat_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/myisam_mrr_cost.result
-- Installing: /mysql/software/mysql-test/./r/bool.result
-- Installing: /mysql/software/mysql-test/./r/subselect_gis.result
-- Installing: /mysql/software/mysql-test/./r/ctype_latin2.result
-- Installing: /mysql/software/mysql-test/./r/debug_sync2.result
-- Installing: /mysql/software/mysql-test/./r/status_debug.result
-- Installing: /mysql/software/mysql-test/./r/func_weight_string.result
-- Installing: /mysql/software/mysql-test/./r/debug_sync.result
-- Installing: /mysql/software/mysql-test/./r/ctype_collate.result
-- Installing: /mysql/software/mysql-test/./r/fulltext3.result
-- Installing: /mysql/software/mysql-test/./r/ctype_gb2312.result
-- Installing: /mysql/software/mysql-test/./r/have_cp1250_ch.require
-- Installing: /mysql/software/mysql-test/./r/lock_sync.result
-- Installing: /mysql/software/mysql-test/./r/sp-destruct.result
-- Installing: /mysql/software/mysql-test/./r/func_rollback.result
-- Installing: /mysql/software/mysql-test/./r/view.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_none.result
-- Installing: /mysql/software/mysql-test/./r/partition_utf8.result
-- Installing: /mysql/software/mysql-test/./r/alter_table-big.result
-- Installing: /mysql/software/mysql-test/./r/variables.result
-- Installing: /mysql/software/mysql-test/./r/blackhole.result
-- Installing: /mysql/software/mysql-test/./r/join_nested_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/variables_debug.result
-- Installing: /mysql/software/mysql-test/./r/have_moscow_leap_timezone.require
-- Installing: /mysql/software/mysql-test/./r/parser_stack.result
-- Installing: /mysql/software/mysql-test/./r/create-big.result
-- Installing: /mysql/software/mysql-test/./r/odbc.result
-- Installing: /mysql/software/mysql-test/./r/partition_index_innodb.result
-- Installing: /mysql/software/mysql-test/./r/log_empty_name.result
-- Installing: /mysql/software/mysql-test/./r/alter_table.result
-- Installing: /mysql/software/mysql-test/./r/union.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_innodb_all_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/null_key_all.result
-- Installing: /mysql/software/mysql-test/./r/audit_plugin.result
-- Installing: /mysql/software/mysql-test/./r/kill.result
-- Installing: /mysql/software/mysql-test/./r/index_merge_delete.result
-- Installing: /mysql/software/mysql-test/./r/sp_notembedded.result
-- Installing: /mysql/software/mysql-test/./r/partition_error.result
-- Installing: /mysql/software/mysql-test/./r/func_isnull.result
-- Installing: /mysql/software/mysql-test/./r/mysqlimport.result
-- Installing: /mysql/software/mysql-test/./r/func_digest.result
-- Installing: /mysql/software/mysql-test/./r/rewrite_general_log.result
-- Installing: /mysql/software/mysql-test/./r/wl6219-innodb.result
-- Installing: /mysql/software/mysql-test/./r/have_latin2_ch.require
-- Installing: /mysql/software/mysql-test/./r/bug12427262.result
-- Installing: /mysql/software/mysql-test/./r/archive_symlink.result
-- Installing: /mysql/software/mysql-test/./r/type_datetime.result
-- Installing: /mysql/software/mysql-test/./r/row.result
-- Installing: /mysql/software/mysql-test/./r/locale.result
-- Installing: /mysql/software/mysql-test/./r/mysqltest.result
-- Installing: /mysql/software/mysql-test/./r/concurrent_innodb_unsafelog.result
-- Installing: /mysql/software/mysql-test/./r/heap_hash.result
-- Installing: /mysql/software/mysql-test/./r/ctype_uca.result
-- Installing: /mysql/software/mysql-test/./r/query_cache_28249.result
-- Installing: /mysql/software/mysql-test/./r/udf_skip_grants.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_mat_nosj.result
-- Installing: /mysql/software/mysql-test/./r/true.require
-- Installing: /mysql/software/mysql-test/./r/mysqldump.result
-- Installing: /mysql/software/mysql-test/./r/mysqld--help-win.result
-- Installing: /mysql/software/mysql-test/./r/csv_alter_table.result
-- Installing: /mysql/software/mysql-test/./r/join_optimizer.result
-- Installing: /mysql/software/mysql-test/./r/join_outer_bka.result
-- Installing: /mysql/software/mysql-test/./r/myisam_icp.result
-- Installing: /mysql/software/mysql-test/./r/signal_code.result
-- Installing: /mysql/software/mysql-test/./r/partition_innodb_semi_consistent.result
-- Installing: /mysql/software/mysql-test/./r/gis.result
-- Installing: /mysql/software/mysql-test/./r/plugin_load_option.result
-- Installing: /mysql/software/mysql-test/./r/select_none.result
-- Installing: /mysql/software/mysql-test/./r/ctype_ascii.result
-- Installing: /mysql/software/mysql-test/./r/rpl_extraColmaster_myisam.result
-- Installing: /mysql/software/mysql-test/./r/not_ndb.require
-- Installing: /mysql/software/mysql-test/./r/func_aes_cfb1.result
-- Installing: /mysql/software/mysql-test/./r/join_cache_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/commit.result
-- Installing: /mysql/software/mysql-test/./r/index_merge_intersect_dml.result
-- Installing: /mysql/software/mysql-test/./r/have_gb2312.require
-- Installing: /mysql/software/mysql-test/./r/subquery_none_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/join_nested_bka.result
-- Installing: /mysql/software/mysql-test/./r/func_des_encrypt.result
-- Installing: /mysql/software/mysql-test/./r/key_cache.result
-- Installing: /mysql/software/mysql-test/./r/deprecated_features.result
-- Installing: /mysql/software/mysql-test/./r/partition.result
-- Installing: /mysql/software/mysql-test/./r/have_mysql_upgrade.result
-- Installing: /mysql/software/mysql-test/./r/partition_truncate.result
-- Installing: /mysql/software/mysql-test/./r/insert.result
-- Installing: /mysql/software/mysql-test/./r/subquery_none_bka.result
-- Installing: /mysql/software/mysql-test/./r/mysql_cp932.result
-- Installing: /mysql/software/mysql-test/./r/partition_locking.result
-- Installing: /mysql/software/mysql-test/./r/sp_gis.result
-- Installing: /mysql/software/mysql-test/./r/parser.result
-- Installing: /mysql/software/mysql-test/./r/have_partition.require
-- Installing: /mysql/software/mysql-test/./r/partition_grant.result
-- Installing: /mysql/software/mysql-test/./r/trigger-compat.result
-- Installing: /mysql/software/mysql-test/./r/ps_not_windows.result
-- Installing: /mysql/software/mysql-test/./r/mysqldump-compat.result
-- Installing: /mysql/software/mysql-test/./r/log_errchk.result
-- Installing: /mysql/software/mysql-test/./r/mysql_embedded_client_test.result
-- Installing: /mysql/software/mysql-test/./r/grant_explain_non_select.result
-- Installing: /mysql/software/mysql-test/./r/func_aes.result
-- Installing: /mysql/software/mysql-test/./r/partition_explicit_prune.result
-- Installing: /mysql/software/mysql-test/./r/have_log_bin.require
-- Installing: /mysql/software/mysql-test/./r/wl6301_3.result
-- Installing: /mysql/software/mysql-test/./r/ctype_utf8mb4_uca.result
-- Installing: /mysql/software/mysql-test/./r/help.result
-- Installing: /mysql/software/mysql-test/./r/have_gbk.require
-- Installing: /mysql/software/mysql-test/./r/information_schema_inno.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_all_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/ctype_big5.result
-- Installing: /mysql/software/mysql-test/./r/timezone_grant.result
-- Installing: /mysql/software/mysql-test/./r/big_test.require
-- Installing: /mysql/software/mysql-test/./r/partition_debug_sync.result
-- Installing: /mysql/software/mysql-test/./r/ctype_tis620.result
-- Installing: /mysql/software/mysql-test/./r/events_logs_tests.result
-- Installing: /mysql/software/mysql-test/./r/merge.result
-- Installing: /mysql/software/mysql-test/./r/ssl_crl_crlpath.result
-- Installing: /mysql/software/mysql-test/./r/subquery_sj_firstmatch_bka_nixbnl.result
-- Installing: /mysql/software/mysql-test/./r/ps_1general.result
-- Installing: /mysql/software/mysql-test/./r/ps_5merge.result
-- Installing: /mysql/software/mysql-test/./r/openssl.require
-- Installing: /mysql/software/mysql-test/./r/insert_update.result
-- Installing: /mysql/software/mysql-test/./r/endspace.result
-- Installing: /mysql/software/mysql-test/./r/select_found.result
-- Installing: /mysql/software/mysql-test/./r/func_encrypt.result
-- Installing: /mysql/software/mysql-test/./r/eq_range_idx_stat.result
-- Installing: /mysql/software/mysql-test/./r/partition_archive.result
-- Installing: /mysql/software/mysql-test/./r/events_1.result
-- Installing: /mysql/software/mysql-test/./r/repair.result
-- Installing: /mysql/software/mysql-test/./r/ps_10nestset.result
-- Installing: /mysql/software/mysql-test/./r/plugin.result
-- Installing: /mysql/software/mysql-test/./r/mysqlbinlog.result
-- Installing: /mysql/software/mysql-test/./r/ssl_crl.result
-- Installing: /mysql/software/mysql-test/./r/sp-prelocking.result
-- Installing: /mysql/software/mysql-test/./r/sp-code.result
-- Installing: /mysql/software/mysql-test/./r/events_grant.result
-- Installing: /mysql/software/mysql-test/./collections
-- Installing: /mysql/software/mysql-test/./collections/default.weekly-valgrind
-- Installing: /mysql/software/mysql-test/./collections/disabled-gtid-on.list
-- Installing: /mysql/software/mysql-test/./collections/default.release.done
-- Installing: /mysql/software/mysql-test/./collections/default.push
-- Installing: /mysql/software/mysql-test/./collections/README
-- Installing: /mysql/software/mysql-test/./collections/disabled-weekly.list
-- Installing: /mysql/software/mysql-test/./collections/default.release
-- Installing: /mysql/software/mysql-test/./collections/default.weekly
-- Installing: /mysql/software/mysql-test/./collections/default.experimental
-- Installing: /mysql/software/mysql-test/./collections/default.daily
-- Installing: /mysql/software/mysql-test/./collections/default.push-valgrind
-- Installing: /mysql/software/mysql-test/./collections/README.experimental
-- Installing: /mysql/software/mysql-test/./collections/default.daily-valgrind
-- Installing: /mysql/software/mysql-test/./collections/default.weekly.basic
-- Installing: /mysql/software/mysql-test/./collections/disabled-per-push.list
-- Installing: /mysql/software/mysql-test/./collections/disabled-daily.list
-- Installing: /mysql/software/mysql-test/./std_data
-- Installing: /mysql/software/mysql-test/./std_data/parts
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_will_crash#P#p6.MYD
-- Installing: /mysql/software/mysql-test/./std_data/parts/part_supported_sql_funcs_int_ch1.inc
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_will_crash#P#p2.MYI
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_will_crash#P#p4.MYI
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_blackhole.par
-- Installing: /mysql/software/mysql-test/./std_data/parts/part_supported_sql_funcs_int_time.inc
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_will_crash#P#p2.MYD
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_will_crash#P#p1_first_1024.MYD
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1.frm
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_will_crash#P#p6_2.MYD
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_blackhole.frm
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_will_crash#P#p3.MYI
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1_will_crash#P#p6_3.MYD
-- Installing: /mysql/software/mysql-test/./std_data/parts/part_supported_sql_funcs_int_date.inc
-- Installing: /mysql/software/mysql-test/./std_data/parts/part_supported_sql_funcs_int_int.inc
-- Installing: /mysql/software/mysql-test/./std_data/parts/part_supported_sql_funcs_int_float.inc
-- Installing: /mysql/software/mysql-test/./std_data/parts/t1TIMESTAMP.frm
-- Installing: /mysql/software/mysql-test/./std_data/bug36055.MYI
-- Installing: /mysql/software/mysql-test/./std_data/bad_gis_data.dat
-- Installing: /mysql/software/mysql-test/./std_data/charset_utf8.txt
-- Installing: /mysql/software/mysql-test/./std_data/warnings_loaddata.dat
-- Installing: /mysql/software/mysql-test/./std_data/cluster_7022_table.frm
-- Installing: /mysql/software/mysql-test/./std_data/bug49823.CSV
-- Installing: /mysql/software/mysql-test/./std_data/corrupt_t1#P#p1.MYI
-- Installing: /mysql/software/mysql-test/./std_data/wl6219_55_innodb.frm
-- Installing: /mysql/software/mysql-test/./std_data/wl6219_55.MYD
-- Installing: /mysql/software/mysql-test/./std_data/loaddata_dq.dat
-- Installing: /mysql/software/mysql-test/./std_data/bug17532932.MYI
-- Installing: /mysql/software/mysql-test/./std_data/rpl_bug28618.dat
-- Installing: /mysql/software/mysql-test/./std_data/bug17532932.frm
-- Installing: /mysql/software/mysql-test/./std_data/loaddata1.dat
-- Installing: /mysql/software/mysql-test/./std_data/bug49823.frm
-- Installing: /mysql/software/mysql-test/./std_data/dtrace.d
-- Installing: /mysql/software/mysql-test/./std_data/bug19371.MYI
-- Installing: /mysql/software/mysql-test/./std_data/55_temporal.MYD
-- Installing: /mysql/software/mysql-test/./std_data/binlog_transaction_with_anonymous_GTID.000001
-- Installing: /mysql/software/mysql-test/./std_data/trunc_binlog.000001
-- Installing: /mysql/software/mysql-test/./std_data/system_tap.stp
-- Installing: /mysql/software/mysql-test/./std_data/bug30435_10k_items.txt
-- Installing: /mysql/software/mysql-test/./std_data/bug37631.MYD
-- Installing: /mysql/software/mysql-test/./std_data/bug49823.CSM
-- Installing: /mysql/software/mysql-test/./std_data/old_table-323.frm
-- Installing: /mysql/software/mysql-test/./std_data/latin1.xml
-- Installing: /mysql/software/mysql-test/./std_data/bug19371.frm
-- Installing: /mysql/software/mysql-test/./std_data/onerow.xml
-- Installing: /mysql/software/mysql-test/./std_data/crl-certificate-readme.txt
-- Installing: /mysql/software/mysql-test/./std_data/server8k-key.pem
-- Installing: /mysql/software/mysql-test/./std_data/vchar.frm
-- Installing: /mysql/software/mysql-test/./std_data/old-format-relay-log.info
-- Installing: /mysql/software/mysql-test/./std_data/server-cert.pem
-- Installing: /mysql/software/mysql-test/./std_data/rpl_timezone2.dat
-- Installing: /mysql/software/mysql-test/./std_data/14897.frm
-- Installing: /mysql/software/mysql-test/./std_data/words.dat
-- Installing: /mysql/software/mysql-test/./std_data/binlog_transaction_with_GTID.000001
-- Installing: /mysql/software/mysql-test/./std_data/wl6219_41.MYD
-- Installing: /mysql/software/mysql-test/./std_data/binlog_savepoint.000001
-- Installing: /mysql/software/mysql-test/./std_data/loaddata_utf8.dat
-- Installing: /mysql/software/mysql-test/./std_data/loaddata5.dat
-- Installing: /mysql/software/mysql-test/./std_data/Index.xml
-- Installing: /mysql/software/mysql-test/./std_data/loadxml2.dat
-- Installing: /mysql/software/mysql-test/./std_data/words2.dat
-- Installing: /mysql/software/mysql-test/./std_data/bug46565.ARZ
-- Installing: /mysql/software/mysql-test/./std_data/loaddata3.dat
-- Installing: /mysql/software/mysql-test/./std_data/bug33029-slave-relay-bin.000001
-- Installing: /mysql/software/mysql-test/./std_data/slave-relay-bin_win.index
-- Installing: /mysql/software/mysql-test/./std_data/bug48449.frm
-- Installing: /mysql/software/mysql-test/./std_data/.mylogin.cnf
-- Installing: /mysql/software/mysql-test/./std_data/binlog_transaction.000001
-- Installing: /mysql/software/mysql-test/./std_data/bug48265.frm
-- Installing: /mysql/software/mysql-test/./std_data/bug35469.dat
-- Installing: /mysql/software/mysql-test/./std_data/client-key.pem
-- Installing: /mysql/software/mysql-test/./std_data/master-bin.000001
-- Installing: /mysql/software/mysql-test/./std_data/wl6219_55.MYI
-- Installing: /mysql/software/mysql-test/./std_data/ca-sha512.pem
-- Installing: /mysql/software/mysql-test/./std_data/bug19371.MYD
-- Installing: /mysql/software/mysql-test/./std_data/bug15328.cnf
-- Installing: /mysql/software/mysql-test/./std_data/crldir
-- Installing: /mysql/software/mysql-test/./std_data/crldir/ab8a3803.r0
-- Installing: /mysql/software/mysql-test/./std_data/wl6219_41.MYI
-- Installing: /mysql/software/mysql-test/./std_data/rpl_timezone.dat
-- Installing: /mysql/software/mysql-test/./std_data/cacert.pem
-- Installing: /mysql/software/mysql-test/./std_data/bug48633.ARM
-- Installing: /mysql/software/mysql-test/./std_data/checkDBI_DBD-mysql.pl
-- Installing: /mysql/software/mysql-test/./std_data/client-cert.pem
-- Installing: /mysql/software/mysql-test/./std_data/crl-server-key.pem
-- Installing: /mysql/software/mysql-test/./std_data/loaddata2.dat
-- Installing: /mysql/software/mysql-test/./std_data/slave-relay-bin_linux.index
-- Installing: /mysql/software/mysql-test/./std_data/bug48633.frm
-- Installing: /mysql/software/mysql-test/./std_data/bug37631.MYI
-- Installing: /mysql/software/mysql-test/./std_data/rsa_private_key.pem
-- Installing: /mysql/software/mysql-test/./std_data/crl-client-cert.pem
-- Installing: /mysql/software/mysql-test/./std_data/crl-server-cert.pem
-- Installing: /mysql/software/mysql-test/./std_data/rsa_public_key.pem
-- Installing: /mysql/software/mysql-test/./std_data/crl-client-revoked-key.pem
-- Installing: /mysql/software/mysql-test/./std_data/55_temporal.MYI
-- Installing: /mysql/software/mysql-test/./std_data/crl-client-revoked.crl
-- Installing: /mysql/software/mysql-test/./std_data/old-format-relay-log-win.info
-- Installing: /mysql/software/mysql-test/./std_data/bug16266.000001
-- Installing: /mysql/software/mysql-test/./std_data/bug47012.frm
-- Installing: /mysql/software/mysql-test/./std_data/bug47205.frm
-- Installing: /mysql/software/mysql-test/./std_data/crl-client-key.pem
-- Installing: /mysql/software/mysql-test/./std_data/server8k-cert.pem
-- Installing: /mysql/software/mysql-test/./std_data/server-cert-sha512.pem
-- Installing: /mysql/software/mysql-test/./std_data/init_file.dat
-- Installing: /mysql/software/mysql-test/./std_data/bug47012.ARM
-- Installing: /mysql/software/mysql-test/./std_data/wl6219_55.frm
-- Installing: /mysql/software/mysql-test/./std_data/rpl_loaddata2.dat
-- Installing: /mysql/software/mysql-test/./std_data/bug47012.ARZ
-- Installing: /mysql/software/mysql-test/./std_data/loadxml.dat
-- Installing: /mysql/software/mysql-test/./std_data/bug40482-bin.000001
-- Installing: /mysql/software/mysql-test/./std_data/bug17532932.MYD
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/ndb_tb4.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/myisam_tb2.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/innodb_tb3.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/t7.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/myisam_tb3.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/memory_tb4.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/ndb_tb1.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/t3.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/innodb_tb1.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/innodb_tb2.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/memory_tb2.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/myisam_tb1.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/load_file.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/innodb_tb4.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/memory_tb1.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/t4.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/ndb_tb3.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/ndb_tb2.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/t9.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/memory_tb3.txt
-- Installing: /mysql/software/mysql-test/./std_data/funcs_1/myisam_tb4.txt
-- Installing: /mysql/software/mysql-test/./std_data/server-key-sha512.pem
-- Installing: /mysql/software/mysql-test/./std_data/numbers.txt
-- Installing: /mysql/software/mysql-test/./std_data/loaddata4.dat
-- Installing: /mysql/software/mysql-test/./std_data/cluster_7022_table.MYI
-- Installing: /mysql/software/mysql-test/./std_data/intersect-bug50389.tsv
-- Installing: /mysql/software/mysql-test/./std_data/bug36055.MYD
-- Installing: /mysql/software/mysql-test/./std_data/corrupt_t1.MYI
-- Installing: /mysql/software/mysql-test/./std_data/server-key.pem
-- Installing: /mysql/software/mysql-test/./std_data/crl-ca-cert.pem
-- Installing: /mysql/software/mysql-test/./std_data/bug46565.frm
-- Installing: /mysql/software/mysql-test/./std_data/bug48633.ARZ
-- Installing: /mysql/software/mysql-test/./std_data/bug30435_5k.txt
-- Installing: /mysql/software/mysql-test/./std_data/untrusted-cacert.pem
-- Installing: /mysql/software/mysql-test/./std_data/rpl_mixed.dat
-- Installing: /mysql/software/mysql-test/./std_data/crl-client-revoked-cert.pem
-- Installing: /mysql/software/mysql-test/./std_data/cluster_7022_table.MYD
-- Installing: /mysql/software/mysql-test/./std_data/wl6219_41.frm
-- Installing: /mysql/software/mysql-test/./std_data/loaddata_pair.dat
-- Installing: /mysql/software/mysql-test/./std_data/55_temporal.frm
-- Installing: /mysql/software/mysql-test/./std_data/bug37631.frm
-- Installing: /mysql/software/mysql-test/./std_data/bug36055.frm
-- Installing: /mysql/software/mysql-test/./std_data/Moscow_leap
-- Installing: /mysql/software/mysql-test/./std_data/rpl_loaddata.dat
-- Installing: /mysql/software/mysql-test/./std_data/corrupt-relay-bin.000624
-- Installing: /mysql/software/mysql-test/./std_data/des_key_file
-- Installing: /mysql/software/mysql-test/./std_data/loaddata6.dat
-- Installing: /mysql/software/mysql-test/./mysql-test-run
-- Installing: /mysql/software/mysql-test/./mysql-test-run.pl
-- Installing: /mysql/software/mysql-test/./lib
-- Installing: /mysql/software/mysql-test/./lib/mtr_results.pm
-- Installing: /mysql/software/mysql-test/./lib/mtr_cases.pm
-- Installing: /mysql/software/mysql-test/./lib/mtr_match.pm
-- Installing: /mysql/software/mysql-test/./lib/mtr_unique.pm
-- Installing: /mysql/software/mysql-test/./lib/mtr_misc.pl
-- Installing: /mysql/software/mysql-test/./lib/mtr_gcov.pl
-- Installing: /mysql/software/mysql-test/./lib/mtr_report.pm
-- Installing: /mysql/software/mysql-test/./lib/v1
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_im.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_timer.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/ndb_config_1_node.ini
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_unique.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_match.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/incompatible.tests
-- Installing: /mysql/software/mysql-test/./lib/v1/ndb_config_2_node.ini
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_misc.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mysql-test-run.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_gcov.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_cases.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_report.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_stress.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_process.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_io.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/mtr_gprof.pl
-- Installing: /mysql/software/mysql-test/./lib/v1/My
-- Installing: /mysql/software/mysql-test/./lib/v1/My/Config.pm
-- Installing: /mysql/software/mysql-test/./lib/mtr_stress.pl
-- Installing: /mysql/software/mysql-test/./lib/mtr_process.pl
-- Installing: /mysql/software/mysql-test/./lib/mtr_io.pl
-- Installing: /mysql/software/mysql-test/./lib/mtr_gprof.pl
-- Installing: /mysql/software/mysql-test/./lib/My
-- Installing: /mysql/software/mysql-test/./lib/My/SysInfo.pm
-- Installing: /mysql/software/mysql-test/./lib/My/ConfigFactory.pm
-- Installing: /mysql/software/mysql-test/./lib/My/Config.pm
-- Installing: /mysql/software/mysql-test/./lib/My/SafeProcess.pm
-- Installing: /mysql/software/mysql-test/./lib/My/File
-- Installing: /mysql/software/mysql-test/./lib/My/File/Path.pm
-- Installing: /mysql/software/mysql-test/./lib/My/Handles.pm
-- Installing: /mysql/software/mysql-test/./lib/My/Exec.pm
-- Installing: /mysql/software/mysql-test/./lib/My/CoreDump.pm
-- Installing: /mysql/software/mysql-test/./lib/My/Options.pm
-- Installing: /mysql/software/mysql-test/./lib/My/Find.pm
-- Installing: /mysql/software/mysql-test/./lib/My/Platform.pm
-- Installing: /mysql/software/mysql-test/./lib/My/Test.pm
-- Installing: /mysql/software/mysql-test/./lib/My/Memcache.pm
-- Installing: /mysql/software/mysql-test/./cmake_install.cmake
-- Installing: /mysql/software/mysql-test/./t
-- Installing: /mysql/software/mysql-test/./t/status_debug.test
-- Installing: /mysql/software/mysql-test/./t/partition_myisam.test
-- Installing: /mysql/software/mysql-test/./t/mysqlbinlog_mixed_or_statment.test
-- Installing: /mysql/software/mysql-test/./t/ps_4heap.test
-- Installing: /mysql/software/mysql-test/./t/main.lowercase_table_qcache-master.opt
-- Installing: /mysql/software/mysql-test/./t/lowercase_utf8-master.opt
-- Installing: /mysql/software/mysql-test/./t/kill_debug.test
-- Installing: /mysql/software/mysql-test/./t/mysqldump_restore.test
-- Installing: /mysql/software/mysql-test/./t/subselect_notembedded-master.opt
-- Installing: /mysql/software/mysql-test/./t/function_defaults.test
-- Installing: /mysql/software/mysql-test/./t/func_analyse.test
-- Installing: /mysql/software/mysql-test/./t/dirty_close.test
-- Installing: /mysql/software/mysql-test/./t/bug47671.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_qa.test
-- Installing: /mysql/software/mysql-test/./t/join_outer_bka.test
-- Installing: /mysql/software/mysql-test/./t/myisam_mrr_none.test
-- Installing: /mysql/software/mysql-test/./t/ipv4_as_ipv6-master.opt
-- Installing: /mysql/software/mysql-test/./t/validate_password_plugin.test
-- Installing: /mysql/software/mysql-test/./t/ctype_latin1_de-master.opt
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_qa_2-master.opt
-- Installing: /mysql/software/mysql-test/./t/type_temporal_fractional.test
-- Installing: /mysql/software/mysql-test/./t/type_set.test
-- Installing: /mysql/software/mysql-test/./t/mysql_locale_posix.test
-- Installing: /mysql/software/mysql-test/./t/index_merge_innodb.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf16_def.test
-- Installing: /mysql/software/mysql-test/./t/wl6301_3.test
-- Installing: /mysql/software/mysql-test/./t/gis-rt-precise.test
-- Installing: /mysql/software/mysql-test/./t/view.test
-- Installing: /mysql/software/mysql-test/./t/type_newdecimal-big.test
-- Installing: /mysql/software/mysql-test/./t/partition_symlink.test
-- Installing: /mysql/software/mysql-test/./t/myisam_explain_json_non_select_none.test
-- Installing: /mysql/software/mysql-test/./t/sp-prelocking-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_gb2312.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table4.test
-- Installing: /mysql/software/mysql-test/./t/range_mrr.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_view-master.opt
-- Installing: /mysql/software/mysql-test/./t/read_only_innodb.test
-- Installing: /mysql/software/mysql-test/./t/join_cache_nojb.test
-- Installing: /mysql/software/mysql-test/./t/func_time.test
-- Installing: /mysql/software/mysql-test/./t/partition_grant.test
-- Installing: /mysql/software/mysql-test/./t/insert_select.test
-- Installing: /mysql/software/mysql-test/./t/varbinary.test
-- Installing: /mysql/software/mysql-test/./t/ctype_cp1250_ch.test
-- Installing: /mysql/software/mysql-test/./t/partition_order.test
-- Installing: /mysql/software/mysql-test/./t/secure_file_priv_win-master.opt
-- Installing: /mysql/software/mysql-test/./t/query_cache_debug-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_firstmatch_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8mb4_innodb.test
-- Installing: /mysql/software/mysql-test/./t/variables-big.test
-- Installing: /mysql/software/mysql-test/./t/row.test
-- Installing: /mysql/software/mysql-test/./t/bug46080-master.opt
-- Installing: /mysql/software/mysql-test/./t/timezone3.test
-- Installing: /mysql/software/mysql-test/./t/subquery_all_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/single_delete_update.test
-- Installing: /mysql/software/mysql-test/./t/mysql_delimiter_19799.sql
-- Installing: /mysql/software/mysql-test/./t/lock_sync-master.opt
-- Installing: /mysql/software/mysql-test/./t/myisam.test
-- Installing: /mysql/software/mysql-test/./t/type_year.test
-- Installing: /mysql/software/mysql-test/./t/type_timestamp-master.opt
-- Installing: /mysql/software/mysql-test/./t/delayed.test
-- Installing: /mysql/software/mysql-test/./t/log_state_bug33693-master.opt
-- Installing: /mysql/software/mysql-test/./t/func_timestamp.test
-- Installing: /mysql/software/mysql-test/./t/ps_1general.test
-- Installing: /mysql/software/mysql-test/./t/null_key_all.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table2.test
-- Installing: /mysql/software/mysql-test/./t/unsafe_binlog_innodb.test
-- Installing: /mysql/software/mysql-test/./t/information_schema_inno.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_with_views-master.opt
-- Installing: /mysql/software/mysql-test/./t/eq_range_idx_stat.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8.test
-- Installing: /mysql/software/mysql-test/./t/fulltext.test
-- Installing: /mysql/software/mysql-test/./t/alter_table-big.test
-- Installing: /mysql/software/mysql-test/./t/ctype_many.test
-- Installing: /mysql/software/mysql-test/./t/function_defaults_notembedded.test
-- Installing: /mysql/software/mysql-test/./t/ssl_crl_clients_valid.test
-- Installing: /mysql/software/mysql-test/./t/myisam_mrr_cost_all.test
-- Installing: /mysql/software/mysql-test/./t/gis-rtree.test
-- Installing: /mysql/software/mysql-test/./t/events_restart-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_big5.test
-- Installing: /mysql/software/mysql-test/./t/bug47671-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_all.test
-- Installing: /mysql/software/mysql-test/./t/comment_column.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_ps_ps_prot-master.opt
-- Installing: /mysql/software/mysql-test/./t/kill.test
-- Installing: /mysql/software/mysql-test/./t/archive_no_symlink.test
-- Installing: /mysql/software/mysql-test/./t/ipv4_as_ipv6.test
-- Installing: /mysql/software/mysql-test/./t/subquery_mat.test
-- Installing: /mysql/software/mysql-test/./t/mysql_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_binlog_stmt.test
-- Installing: /mysql/software/mysql-test/./t/key.test
-- Installing: /mysql/software/mysql-test/./t/plugin_load.test
-- Installing: /mysql/software/mysql-test/./t/events_bugs.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8mb4_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysqldump-compat.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table3-master.opt
-- Installing: /mysql/software/mysql-test/./t/flush_table.test
-- Installing: /mysql/software/mysql-test/./t/func_date_add.test
-- Installing: /mysql/software/mysql-test/./t/disconnect_on_expired_password_off-master.opt
-- Installing: /mysql/software/mysql-test/./t/myisam_mrr.test
-- Installing: /mysql/software/mysql-test/./t/validate_password_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./t/bug46080.test
-- Installing: /mysql/software/mysql-test/./t/range_icp_mrr.test
-- Installing: /mysql/software/mysql-test/./t/bug17076131.test
-- Installing: /mysql/software/mysql-test/./t/myisam_explain_non_select_all.test
-- Installing: /mysql/software/mysql-test/./t/symlink.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_none_bka.test
-- Installing: /mysql/software/mysql-test/./t/greedy_optimizer.test
-- Installing: /mysql/software/mysql-test/./t/sp-ucs2.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_none.test
-- Installing: /mysql/software/mysql-test/./t/ssl_and_innodb.test
-- Installing: /mysql/software/mysql-test/./t/cache_innodb.test
-- Installing: /mysql/software/mysql-test/./t/func_op.test
-- Installing: /mysql/software/mysql-test/./t/show_check-master.opt
-- Installing: /mysql/software/mysql-test/./t/distinct.test
-- Installing: /mysql/software/mysql-test/./t/table_definition_cache_functionality.test
-- Installing: /mysql/software/mysql-test/./t/audit_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./t/multi_plugin_load_add2.test
-- Installing: /mysql/software/mysql-test/./t/keywords.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_innodb_all_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/type_timestamp_explicit-master.opt
-- Installing: /mysql/software/mysql-test/./t/trans_read_only.test
-- Installing: /mysql/software/mysql-test/./t/group_min_max_innodb.test
-- Installing: /mysql/software/mysql-test/./t/order_by_icp_mrr.test
-- Installing: /mysql/software/mysql-test/./t/ssl_cipher-master.opt
-- Installing: /mysql/software/mysql-test/./t/query_cache_disabled.test
-- Installing: /mysql/software/mysql-test/./t/flush_block_commit_notembedded.test
-- Installing: /mysql/software/mysql-test/./t/myisam_explain_json_non_select_all.test
-- Installing: /mysql/software/mysql-test/./t/multi_update-master.opt
-- Installing: /mysql/software/mysql-test/./t/no_binlog.test
-- Installing: /mysql/software/mysql-test/./t/archive_no_symlink-master.opt
-- Installing: /mysql/software/mysql-test/./t/optimizer_debug_sync.test
-- Installing: /mysql/software/mysql-test/./t/view_alias.test
-- Installing: /mysql/software/mysql-test/./t/partition_not_blackhole-master.opt
-- Installing: /mysql/software/mysql-test/./t/create.test
-- Installing: /mysql/software/mysql-test/./t/innodb_pk_extension_off.test
-- Installing: /mysql/software/mysql-test/./t/func_compress.test
-- Installing: /mysql/software/mysql-test/./t/debug_sync.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_mixed_tmpdir_innodb.test
-- Installing: /mysql/software/mysql-test/./t/type_bit.test
-- Installing: /mysql/software/mysql-test/./t/concurrent_innodb_safelog-master.opt
-- Installing: /mysql/software/mysql-test/./t/xml.test
-- Installing: /mysql/software/mysql-test/./t/mysql_client_test-master.opt
-- Installing: /mysql/software/mysql-test/./t/client_xml.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_all_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/key_primary.test
-- Installing: /mysql/software/mysql-test/./t/innodb_explain_non_select_none.test
-- Installing: /mysql/software/mysql-test/./t/csv_alter_table.test
-- Installing: /mysql/software/mysql-test/./t/fulltext_var.test
-- Installing: /mysql/software/mysql-test/./t/information_schema_db.test
-- Installing: /mysql/software/mysql-test/./t/bug12969156-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_locking.test
-- Installing: /mysql/software/mysql-test/./t/func_encrypt_ucs2.test
-- Installing: /mysql/software/mysql-test/./t/ctype_ucs.test
-- Installing: /mysql/software/mysql-test/./t/type_newdecimal.test
-- Installing: /mysql/software/mysql-test/./t/mysqlimport.test
-- Installing: /mysql/software/mysql-test/./t/type_bit_innodb.test
-- Installing: /mysql/software/mysql-test/./t/myisam_icp_all.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_cost_all-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_ujis_ucs2.test
-- Installing: /mysql/software/mysql-test/./t/auth_rpl.test
-- Installing: /mysql/software/mysql-test/./t/ctype_errors.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_firstmatch_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/sp_trans_log.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_loosescan_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/fulltext_multi.test
-- Installing: /mysql/software/mysql-test/./t/truncate_coverage.test
-- Installing: /mysql/software/mysql-test/./t/myisam_mrr_all.test
-- Installing: /mysql/software/mysql-test/./t/plugin.test
-- Installing: /mysql/software/mysql-test/./t/variables-notembedded-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_hash.test
-- Installing: /mysql/software/mysql-test/./t/multi_plugin_load_add.test
-- Installing: /mysql/software/mysql-test/./t/flush_read_lock.test
-- Installing: /mysql/software/mysql-test/./t/signal_sqlmode.test
-- Installing: /mysql/software/mysql-test/./t/partition_disabled.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_cost_icp.test
-- Installing: /mysql/software/mysql-test/./t/long_tmpdir.test
-- Installing: /mysql/software/mysql-test/./t/fulltext_cache.test
-- Installing: /mysql/software/mysql-test/./t/wl6301_2_not_windows-master.opt
-- Installing: /mysql/software/mysql-test/./t/innodb_mysql_lock2.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_loosescan_bka.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_loosescan.test
-- Installing: /mysql/software/mysql-test/./t/archive_bitfield.test
-- Installing: /mysql/software/mysql-test/./t/ssl-big.test
-- Installing: /mysql/software/mysql-test/./t/ctype_create.test
-- Installing: /mysql/software/mysql-test/./t/preload.test
-- Installing: /mysql/software/mysql-test/./t/ddl_i18n_koi8r.test
-- Installing: /mysql/software/mysql-test/./t/log_tables-big-master.opt
-- Installing: /mysql/software/mysql-test/./t/check_auto_permission.test
-- Installing: /mysql/software/mysql-test/./t/ctype_tis620.test
-- Installing: /mysql/software/mysql-test/./t/archive-big.test
-- Installing: /mysql/software/mysql-test/./t/type_ranges.test
-- Installing: /mysql/software/mysql-test/./t/ctype_ucs2_def-master.opt
-- Installing: /mysql/software/mysql-test/./t/fulltext_left_join.test
-- Installing: /mysql/software/mysql-test/./t/partition_innodb.test
-- Installing: /mysql/software/mysql-test/./t/sysdate_is_now.test
-- Installing: /mysql/software/mysql-test/./t/wl6219-merge.test
-- Installing: /mysql/software/mysql-test/./t/trigger.test
-- Installing: /mysql/software/mysql-test/./t/order_fill_sortbuf-master.opt
-- Installing: /mysql/software/mysql-test/./t/func_regexp.test
-- Installing: /mysql/software/mysql-test/./t/myisam_mrr_cost.test
-- Installing: /mysql/software/mysql-test/./t/count_distinct2.test
-- Installing: /mysql/software/mysql-test/./t/mysqldump-max-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_pruning.test
-- Installing: /mysql/software/mysql-test/./t/range_icp.test
-- Installing: /mysql/software/mysql-test/./t/trigger-compat.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table_qcache-master.opt
-- Installing: /mysql/software/mysql-test/./t/sp-no-code.test
-- Installing: /mysql/software/mysql-test/./t/subselect_notembedded.test
-- Installing: /mysql/software/mysql-test/./t/order_fill_sortbuf.test
-- Installing: /mysql/software/mysql-test/./t/sp-big.test
-- Installing: /mysql/software/mysql-test/./t/order_by_none.test
-- Installing: /mysql/software/mysql-test/./t/func_in_mrr.test
-- Installing: /mysql/software/mysql-test/./t/select_found.test
-- Installing: /mysql/software/mysql-test/./t/mysqld--defaults-file.test
-- Installing: /mysql/software/mysql-test/./t/order_by_all.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table_qcache.test
-- Installing: /mysql/software/mysql-test/./t/loaddata_autocom_innodb.test
-- Installing: /mysql/software/mysql-test/./t/synchronization.test
-- Installing: /mysql/software/mysql-test/./t/join.test
-- Installing: /mysql/software/mysql-test/./t/grant_cache-master.opt
-- Installing: /mysql/software/mysql-test/./t/range_none.test
-- Installing: /mysql/software/mysql-test/./t/wl6219-innodb.test
-- Installing: /mysql/software/mysql-test/./t/mix2_myisam.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_mixed_tmpdir_innodb-master.sh
-- Installing: /mysql/software/mysql-test/./t/sum_distinct-big.test
-- Installing: /mysql/software/mysql-test/./t/ssl_compress.test
-- Installing: /mysql/software/mysql-test/./t/subquery_none_bka.test
-- Installing: /mysql/software/mysql-test/./t/grant_explain_non_select.test
-- Installing: /mysql/software/mysql-test/./t/auto_increment.test
-- Installing: /mysql/software/mysql-test/./t/init_connect-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_dupsweed_bka_nixbnl-master.opt
-- Installing: /mysql/software/mysql-test/./t/ssl_8k_key-master.opt
-- Installing: /mysql/software/mysql-test/./t/innodb_icp_all.test
-- Installing: /mysql/software/mysql-test/./t/plugin_not_embedded.test
-- Installing: /mysql/software/mysql-test/./t/func_in_icp_mrr.test
-- Installing: /mysql/software/mysql-test/./t/ctype_ujis.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_qa_1.test
-- Installing: /mysql/software/mysql-test/./t/myisam_mrr_icp.test
-- Installing: /mysql/software/mysql-test/./t/mix2_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./t/bug46760.test
-- Installing: /mysql/software/mysql-test/./t/handler_innodb.test
-- Installing: /mysql/software/mysql-test/./t/partition_explicit_prune.test
-- Installing: /mysql/software/mysql-test/./t/strict-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_nomat_nosj_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_mixed_tmpdir-master.opt
-- Installing: /mysql/software/mysql-test/./t/trigger-trans.test
-- Installing: /mysql/software/mysql-test/./t/create-big.test
-- Installing: /mysql/software/mysql-test/./t/innodb_icp_none.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_all_bka.test
-- Installing: /mysql/software/mysql-test/./t/log_tables-big.test
-- Installing: /mysql/software/mysql-test/./t/status.test
-- Installing: /mysql/software/mysql-test/./t/flush2-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_innodb_none_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/parser_not_embedded.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_innodb_none_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/myisam_crash_before_flush_keys-master.opt
-- Installing: /mysql/software/mysql-test/./t/udf.test
-- Installing: /mysql/software/mysql-test/./t/mysql_protocols.test
-- Installing: /mysql/software/mysql-test/./t/help.test
-- Installing: /mysql/software/mysql-test/./t/ps_3innodb.test
-- Installing: /mysql/software/mysql-test/./t/func_aes_cfb1.test
-- Installing: /mysql/software/mysql-test/./t/read_many_rows_innodb.test
-- Installing: /mysql/software/mysql-test/./t/select_none_bka.test
-- Installing: /mysql/software/mysql-test/./t/deadlock_innodb.test
-- Installing: /mysql/software/mysql-test/./t/innodb_pk_extension_on.test
-- Installing: /mysql/software/mysql-test/./t/innodb_explain_non_select_all.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_innodb_none.test
-- Installing: /mysql/software/mysql-test/./t/csv_not_null.test
-- Installing: /mysql/software/mysql-test/./t/wait_timeout.test
-- Installing: /mysql/software/mysql-test/./t/archive_symlink.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_28249-master.opt
-- Installing: /mysql/software/mysql-test/./t/csv.test
-- Installing: /mysql/software/mysql-test/./t/ctype_ucs2_def.test
-- Installing: /mysql/software/mysql-test/./t/key_diff.test
-- Installing: /mysql/software/mysql-test/./t/grant_lowercase_fs.test
-- Installing: /mysql/software/mysql-test/./t/outfile_loaddata.test
-- Installing: /mysql/software/mysql-test/./t/bug39022.test
-- Installing: /mysql/software/mysql-test/./t/mysql_binary_mode.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_dupsweed-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysqldump-max.test
-- Installing: /mysql/software/mysql-test/./t/func_aes_misc.test
-- Installing: /mysql/software/mysql-test/./t/information_schema_part.test
-- Installing: /mysql/software/mysql-test/./t/log_empty_name.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_qa_1-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8mb4-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_firstmatch_bka-master.opt
-- Installing: /mysql/software/mysql-test/./t/ps_5merge.test
-- Installing: /mysql/software/mysql-test/./t/user_limits.test
-- Installing: /mysql/software/mysql-test/./t/range_mrr_cost.test
-- Installing: /mysql/software/mysql-test/./t/variables_community.test
-- Installing: /mysql/software/mysql-test/./t/mysql_comments.sql
-- Installing: /mysql/software/mysql-test/./t/ctype_ascii.test
-- Installing: /mysql/software/mysql-test/./t/partition_column.test
-- Installing: /mysql/software/mysql-test/./t/openssl_1.test
-- Installing: /mysql/software/mysql-test/./t/subselect_debug.test
-- Installing: /mysql/software/mysql-test/./t/partition_csv.test
-- Installing: /mysql/software/mysql-test/./t/func_des_encrypt.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_icp.test
-- Installing: /mysql/software/mysql-test/./t/multi_update_tiny_hash.test
-- Installing: /mysql/software/mysql-test/./t/func_isnull.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256_2.test
-- Installing: /mysql/software/mysql-test/./t/concurrent_innodb_safelog.test
-- Installing: /mysql/software/mysql-test/./t/outfile.test
-- Installing: /mysql/software/mysql-test/./t/select_all_bka.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db_fix40123-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysql-bug41486.test
-- Installing: /mysql/software/mysql-test/./t/optimizer_switch.test
-- Installing: /mysql/software/mysql-test/./t/windows.test
-- Installing: /mysql/software/mysql-test/./t/func_in_none.test
-- Installing: /mysql/software/mysql-test/./t/timezone2.test
-- Installing: /mysql/software/mysql-test/./t/variables-notembedded.test
-- Installing: /mysql/software/mysql-test/./t/ctype_sjis.test
-- Installing: /mysql/software/mysql-test/./t/skip_name_resolve-master.opt
-- Installing: /mysql/software/mysql-test/./t/plugin_load-master.opt
-- Installing: /mysql/software/mysql-test/./t/strict_autoinc_1myisam.test
-- Installing: /mysql/software/mysql-test/./t/multi_plugin_load-master.opt
-- Installing: /mysql/software/mysql-test/./t/ps_ddl1.test
-- Installing: /mysql/software/mysql-test/./t/mysql_client_test_embedded.cnf
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256-master.opt
-- Installing: /mysql/software/mysql-test/./t/func_if.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8mb4_heap.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_merge-master.opt
-- Installing: /mysql/software/mysql-test/./t/not_partition.test
-- Installing: /mysql/software/mysql-test/./t/fulltext_update.test
-- Installing: /mysql/software/mysql-test/./t/implicit_commit-master.opt
-- Installing: /mysql/software/mysql-test/./t/func_sapdb.test
-- Installing: /mysql/software/mysql-test/./t/select_icp_mrr_bka.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_all_bka-master.opt
-- Installing: /mysql/software/mysql-test/./t/optimizer_bug12837084.test
-- Installing: /mysql/software/mysql-test/./t/sum_distinct.test
-- Installing: /mysql/software/mysql-test/./t/ctype_cp932_binlog_stm.test
-- Installing: /mysql/software/mysql-test/./t/sp_validation.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_ps_ps_prot.test
-- Installing: /mysql/software/mysql-test/./t/negation_elimination.test
-- Installing: /mysql/software/mysql-test/./t/wl6219-memory.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_utf8.test
-- Installing: /mysql/software/mysql-test/./t/partition_column_prune.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_dupsweed_bka-master.opt
-- Installing: /mysql/software/mysql-test/./t/query_cache_merge.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_mat.test
-- Installing: /mysql/software/mysql-test/./t/partition_innodb_stmt.test
-- Installing: /mysql/software/mysql-test/./t/partition_locking_4.test
-- Installing: /mysql/software/mysql-test/./t/ctype_cp932_binlog_row.test
-- Installing: /mysql/software/mysql-test/./t/log_state_bug33693.test
-- Installing: /mysql/software/mysql-test/./t/index_merge_myisam.test
-- Installing: /mysql/software/mysql-test/./t/ssl-sha512-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_truncate.test
-- Installing: /mysql/software/mysql-test/./t/tablelock.test
-- Installing: /mysql/software/mysql-test/./t/plugin_load_option.test
-- Installing: /mysql/software/mysql-test/./t/events_grant.test
-- Installing: /mysql/software/mysql-test/./t/lock_multi_bug38691.test
-- Installing: /mysql/software/mysql-test/./t/type_date.test
-- Installing: /mysql/software/mysql-test/./t/perror.test
-- Installing: /mysql/software/mysql-test/./t/partition_archive.test
-- Installing: /mysql/software/mysql-test/./t/error_simulation.test
-- Installing: /mysql/software/mysql-test/./t/blackhole_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./t/having.test
-- Installing: /mysql/software/mysql-test/./t/renamedb.test
-- Installing: /mysql/software/mysql-test/./t/log_state.test
-- Installing: /mysql/software/mysql-test/./t/type_uint.test
-- Installing: /mysql/software/mysql-test/./t/not_embedded_server.test
-- Installing: /mysql/software/mysql-test/./t/sp-lock-master.opt
-- Installing: /mysql/software/mysql-test/./t/type_temporal_upgrade.test
-- Installing: /mysql/software/mysql-test/./t/timezone3-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_utf16_uca.test
-- Installing: /mysql/software/mysql-test/./t/type_binary.test
-- Installing: /mysql/software/mysql-test/./t/subselect_innodb.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_dupsweed_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/partition_utf8.test
-- Installing: /mysql/software/mysql-test/./t/handler_read_last.test
-- Installing: /mysql/software/mysql-test/./t/join_cache_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/show_check.test
-- Installing: /mysql/software/mysql-test/./t/unsafe_binlog_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysql-bug45236.test
-- Installing: /mysql/software/mysql-test/./t/fulltext_distinct.test
-- Installing: /mysql/software/mysql-test/./t/bench_count_distinct.test
-- Installing: /mysql/software/mysql-test/./t/information_schema_chmod.test
-- Installing: /mysql/software/mysql-test/./t/commit.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mysql_lock.test
-- Installing: /mysql/software/mysql-test/./t/partition_open_files_limit.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_mat_bka.test
-- Installing: /mysql/software/mysql-test/./t/func_test.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mysql_lock-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_ldml.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_firstmatch-master.opt
-- Installing: /mysql/software/mysql-test/./t/range_all.test
-- Installing: /mysql/software/mysql-test/./t/loaddata.test
-- Installing: /mysql/software/mysql-test/./t/flush_block_commit.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table_grant.test
-- Installing: /mysql/software/mysql-test/./t/ctype_uca.test
-- Installing: /mysql/software/mysql-test/./t/bug33509-master.opt
-- Installing: /mysql/software/mysql-test/./t/innodb_log_file_size_functionality.test
-- Installing: /mysql/software/mysql-test/./t/ssl.test
-- Installing: /mysql/software/mysql-test/./t/plugin_not_embedded-master.opt
-- Installing: /mysql/software/mysql-test/./t/events_trans.test
-- Installing: /mysql/software/mysql-test/./t/rename.test
-- Installing: /mysql/software/mysql-test/./t/disabled_replication-master.opt
-- Installing: /mysql/software/mysql-test/./t/information_schema-big.test
-- Installing: /mysql/software/mysql-test/./t/information_schema_routines.test
-- Installing: /mysql/software/mysql-test/./t/ansi.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_qa-master.opt
-- Installing: /mysql/software/mysql-test/./t/func_system.test
-- Installing: /mysql/software/mysql-test/./t/no-threads.test
-- Installing: /mysql/software/mysql-test/./t/fulltext2.test
-- Installing: /mysql/software/mysql-test/./t/null.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_innodb_none_bka.test
-- Installing: /mysql/software/mysql-test/./t/partition_mgm_err.test
-- Installing: /mysql/software/mysql-test/./t/partition_range.test
-- Installing: /mysql/software/mysql-test/./t/ps_10nestset.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db_fix50030.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr-master.opt
-- Installing: /mysql/software/mysql-test/./t/sp-destruct.test
-- Installing: /mysql/software/mysql-test/./t/sp-bugs.test
-- Installing: /mysql/software/mysql-test/./t/delete.test
-- Installing: /mysql/software/mysql-test/./t/bug12969156.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_dupsweed_bka.test
-- Installing: /mysql/software/mysql-test/./t/ctype_collate.test
-- Installing: /mysql/software/mysql-test/./t/myisam_row_rpl-slave.opt
-- Installing: /mysql/software/mysql-test/./t/limit.test
-- Installing: /mysql/software/mysql-test/./t/ds_mrr-big.test
-- Installing: /mysql/software/mysql-test/./t/wl6301_2_not_windows.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf16_def-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_none_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/drop_debug.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf32_uca.test
-- Installing: /mysql/software/mysql-test/./t/olap.test
-- Installing: /mysql/software/mysql-test/./t/audit_plugin.test
-- Installing: /mysql/software/mysql-test/./t/myisam_recover.test
-- Installing: /mysql/software/mysql-test/./t/flush2.test
-- Installing: /mysql/software/mysql-test/./t/ctype_like_range.test
-- Installing: /mysql/software/mysql-test/./t/mysqlcheck.test
-- Installing: /mysql/software/mysql-test/./t/lock_tables_lost_commit-master.opt
-- Installing: /mysql/software/mysql-test/./t/dynamic_tracing.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table3.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256_server_default.test
-- Installing: /mysql/software/mysql-test/./t/mysql_comments.test
-- Installing: /mysql/software/mysql-test/./t/1st.test
-- Installing: /mysql/software/mysql-test/./t/comment_index.test
-- Installing: /mysql/software/mysql-test/./t/sort_buffer_size_functionality.test
-- Installing: /mysql/software/mysql-test/./t/signal_demo3.test
-- Installing: /mysql/software/mysql-test/./t/commit_1innodb.test
-- Installing: /mysql/software/mysql-test/./t/func_group_innodb_16k.test
-- Installing: /mysql/software/mysql-test/./t/select_all.test
-- Installing: /mysql/software/mysql-test/./t/select_none_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/almost_full.test
-- Installing: /mysql/software/mysql-test/./t/disconnect_on_expired_password_off.test
-- Installing: /mysql/software/mysql-test/./t/partition_innodb_semi_consistent-master.opt
-- Installing: /mysql/software/mysql-test/./t/warnings-master.opt
-- Installing: /mysql/software/mysql-test/./t/user_var.test
-- Installing: /mysql/software/mysql-test/./t/rewrite_general_log.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_qa_2.test
-- Installing: /mysql/software/mysql-test/./t/udf_skip_grants-master.opt
-- Installing: /mysql/software/mysql-test/./t/sp-master.opt
-- Installing: /mysql/software/mysql-test/./t/mdl_sync-master.opt
-- Installing: /mysql/software/mysql-test/./t/group_by.test
-- Installing: /mysql/software/mysql-test/./t/subquery_mat_all.test
-- Installing: /mysql/software/mysql-test/./t/type_time.test
-- Installing: /mysql/software/mysql-test/./t/multi_update.test
-- Installing: /mysql/software/mysql-test/./t/timezone4-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_all_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/drop-no_root.test
-- Installing: /mysql/software/mysql-test/./t/filesort_debug.test
-- Installing: /mysql/software/mysql-test/./t/bootstrap-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_latin1_de.test
-- Installing: /mysql/software/mysql-test/./t/constraints.test
-- Installing: /mysql/software/mysql-test/./t/not_embedded_server-master.opt
-- Installing: /mysql/software/mysql-test/./t/wl6219-myisam.test
-- Installing: /mysql/software/mysql-test/./t/gis-precise.test
-- Installing: /mysql/software/mysql-test/./t/temp_table-master.opt
-- Installing: /mysql/software/mysql-test/./t/ps_grant.test
-- Installing: /mysql/software/mysql-test/./t/overflow.test
-- Installing: /mysql/software/mysql-test/./t/log_tables-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysql_config_editor.test
-- Installing: /mysql/software/mysql-test/./t/partition_cache-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_sync.test
-- Installing: /mysql/software/mysql-test/./t/index_merge_intersect_dml.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db_fix30020-master.opt
-- Installing: /mysql/software/mysql-test/./t/ssl_crl_clients.test
-- Installing: /mysql/software/mysql-test/./t/type_datetime.test
-- Installing: /mysql/software/mysql-test/./t/signal_demo1.test
-- Installing: /mysql/software/mysql-test/./t/func_in_mrr_cost.test
-- Installing: /mysql/software/mysql-test/./t/func_encrypt.test
-- Installing: /mysql/software/mysql-test/./t/ssl_8k_key.test
-- Installing: /mysql/software/mysql-test/./t/events_1.test
-- Installing: /mysql/software/mysql-test/./t/temp_pool-master.opt
-- Installing: /mysql/software/mysql-test/./t/grant2.test
-- Installing: /mysql/software/mysql-test/./t/partition_exchange.test
-- Installing: /mysql/software/mysql-test/./t/join_outer_innodb.test
-- Installing: /mysql/software/mysql-test/./t/func_group_innodb.test
-- Installing: /mysql/software/mysql-test/./t/log_tables_debug.test
-- Installing: /mysql/software/mysql-test/./t/join_outer.test
-- Installing: /mysql/software/mysql-test/./t/wl6443_deprecation-master.opt
-- Installing: /mysql/software/mysql-test/./t/myisam_icp_none.test
-- Installing: /mysql/software/mysql-test/./t/metadata.test
-- Installing: /mysql/software/mysql-test/./t/partition_innodb_plugin.test
-- Installing: /mysql/software/mysql-test/./t/change_user-master.opt
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_none-master.opt
-- Installing: /mysql/software/mysql-test/./t/wl4435_generated.inc
-- Installing: /mysql/software/mysql-test/./t/query_cache_disabled-master.opt
-- Installing: /mysql/software/mysql-test/./t/select_icp_mrr_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256_server_default-master.opt
-- Installing: /mysql/software/mysql-test/./t/plugin_auth.test
-- Installing: /mysql/software/mysql-test/./t/archive_gis.test
-- Installing: /mysql/software/mysql-test/./t/long_tmpdir-master.sh
-- Installing: /mysql/software/mysql-test/./t/order_by_sortkey.test
-- Installing: /mysql/software/mysql-test/./t/myisam_mrr_cost_icp.test
-- Installing: /mysql/software/mysql-test/./t/gis-debug.test
-- Installing: /mysql/software/mysql-test/./t/mysql_client_test_embedded.test
-- Installing: /mysql/software/mysql-test/./t/signal.test
-- Installing: /mysql/software/mysql-test/./t/no-threads-master.opt
-- Installing: /mysql/software/mysql-test/./t/null_key_none.test
-- Installing: /mysql/software/mysql-test/./t/select_all_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/mysqlbinlog_row_big.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_none_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/myisam-system.test
-- Installing: /mysql/software/mysql-test/./t/bulk_replace.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_ps_no_prot.test
-- Installing: /mysql/software/mysql-test/./t/bool.test
-- Installing: /mysql/software/mysql-test/./t/flush_read_lock_kill.test
-- Installing: /mysql/software/mysql-test/./t/partition_disabled-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_hebrew.test
-- Installing: /mysql/software/mysql-test/./t/round.test
-- Installing: /mysql/software/mysql-test/./t/func_misc-master.opt
-- Installing: /mysql/software/mysql-test/./t/innodb_explain_json_non_select_all.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_size_functionality.test
-- Installing: /mysql/software/mysql-test/./t/trans_read_only-master.opt
-- Installing: /mysql/software/mysql-test/./t/query_cache_28249.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256_2-master.opt
-- Installing: /mysql/software/mysql-test/./t/binary.test
-- Installing: /mysql/software/mysql-test/./t/func_digest.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_dupsweed_bkaunique-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysql_upgrade.test
-- Installing: /mysql/software/mysql-test/./t/func_like.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_cost_icp-master.opt
-- Installing: /mysql/software/mysql-test/./t/date_formats-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysql_cp932.test
-- Installing: /mysql/software/mysql-test/./t/partition_not_blackhole.test
-- Installing: /mysql/software/mysql-test/./t/auth_rpl-master.opt
-- Installing: /mysql/software/mysql-test/./t/timezone-master.opt
-- Installing: /mysql/software/mysql-test/./t/query_cache_notembedded-master.opt
-- Installing: /mysql/software/mysql-test/./t/ps_2myisam.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_innodb_all.test
-- Installing: /mysql/software/mysql-test/./t/func_set.test
-- Installing: /mysql/software/mysql-test/./t/func_rollback.test
-- Installing: /mysql/software/mysql-test/./t/xa.test
-- Installing: /mysql/software/mysql-test/./t/type_nchar.test
-- Installing: /mysql/software/mysql-test/./t/date_formats.test
-- Installing: /mysql/software/mysql-test/./t/ps_ddl.test
-- Installing: /mysql/software/mysql-test/./t/events_bugs-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_none.test
-- Installing: /mysql/software/mysql-test/./t/default.test
-- Installing: /mysql/software/mysql-test/./t/ctype_latin2_ch.test
-- Installing: /mysql/software/mysql-test/./t/join_outer_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/count_distinct3.test
-- Installing: /mysql/software/mysql-test/./t/func_equal.test
-- Installing: /mysql/software/mysql-test/./t/skip_grants.test
-- Installing: /mysql/software/mysql-test/./t/bigint.test
-- Installing: /mysql/software/mysql-test/./t/connect.test
-- Installing: /mysql/software/mysql-test/./t/ssl_crl_crlpath-master.opt
-- Installing: /mysql/software/mysql-test/./t/myisam_row_rpl-master.opt
-- Installing: /mysql/software/mysql-test/./t/greedy_search.test
-- Installing: /mysql/software/mysql-test/./t/func_encrypt_nossl.test
-- Installing: /mysql/software/mysql-test/./t/partition_mgm_err2.test
-- Installing: /mysql/software/mysql-test/./t/fulltext_order_by.test
-- Installing: /mysql/software/mysql-test/./t/subquery_all.test
-- Installing: /mysql/software/mysql-test/./t/mysql_embedded-master.opt
-- Installing: /mysql/software/mysql-test/./t/innodb_explain_json_non_select_none.test
-- Installing: /mysql/software/mysql-test/./t/mysqlbinlog.test
-- Installing: /mysql/software/mysql-test/./t/debug_sync2-master.opt
-- Installing: /mysql/software/mysql-test/./t/deprecated_features.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_qa_3-master.opt
-- Installing: /mysql/software/mysql-test/./t/rewrite_slow_log.test
-- Installing: /mysql/software/mysql-test/./t/variables-master.opt
-- Installing: /mysql/software/mysql-test/./t/plugin_auth-master.opt
-- Installing: /mysql/software/mysql-test/./t/type_timestamp.test
-- Installing: /mysql/software/mysql-test/./t/check.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_cost_all.test
-- Installing: /mysql/software/mysql-test/./t/partition_blackhole.test
-- Installing: /mysql/software/mysql-test/./t/func_str.test
-- Installing: /mysql/software/mysql-test/./t/compress.test
-- Installing: /mysql/software/mysql-test/./t/mysqlslap.test
-- Installing: /mysql/software/mysql-test/./t/innodb_icp.test
-- Installing: /mysql/software/mysql-test/./t/ssl_crl_clients-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_mat_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf16.test
-- Installing: /mysql/software/mysql-test/./t/mysqlhotcopy_archive.test
-- Installing: /mysql/software/mysql-test/./t/ipv6.test
-- Installing: /mysql/software/mysql-test/./t/sql_mode.test
-- Installing: /mysql/software/mysql-test/./t/concurrent_innodb_unsafelog.test
-- Installing: /mysql/software/mysql-test/./t/handler_myisam.test
-- Installing: /mysql/software/mysql-test/./t/merge_mmap.test
-- Installing: /mysql/software/mysql-test/./t/udf-master.opt
-- Installing: /mysql/software/mysql-test/./t/count_distinct.test
-- Installing: /mysql/software/mysql-test/./t/multi_update_tiny_hash-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_utf16le.test
-- Installing: /mysql/software/mysql-test/./t/partition_innodb_tablespace.test
-- Installing: /mysql/software/mysql-test/./t/func_crypt.test
-- Installing: /mysql/software/mysql-test/./t/mdl_sync.test
-- Installing: /mysql/software/mysql-test/./t/get_diagnostics.test
-- Installing: /mysql/software/mysql-test/./t/type_blob.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_innodb_all_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/multi_statement-master.opt
-- Installing: /mysql/software/mysql-test/./t/type_enum.test
-- Installing: /mysql/software/mysql-test/./t/innodb_recovery_with_upper_case_names-master.opt
-- Installing: /mysql/software/mysql-test/./t/lowercase_mixed_tmpdir.test
-- Installing: /mysql/software/mysql-test/./t/skip_name_resolve.test
-- Installing: /mysql/software/mysql-test/./t/mysqldump-compat.opt
-- Installing: /mysql/software/mysql-test/./t/mysql_delimiter.sql
-- Installing: /mysql/software/mysql-test/./t/archive_plugin.test
-- Installing: /mysql/software/mysql-test/./t/signal_demo2.test
-- Installing: /mysql/software/mysql-test/./t/sp_stress_case.test
-- Installing: /mysql/software/mysql-test/./t/ctype_euckr.test
-- Installing: /mysql/software/mysql-test/./t/ctype_cp1251.test
-- Installing: /mysql/software/mysql-test/./t/packet.test
-- Installing: /mysql/software/mysql-test/./t/bug58669-master.opt
-- Installing: /mysql/software/mysql-test/./t/parser_stack.test
-- Installing: /mysql/software/mysql-test/./t/ctype_filesystem.test
-- Installing: /mysql/software/mysql-test/./t/partition_cache.test
-- Installing: /mysql/software/mysql-test/./t/bug46261.test
-- Installing: /mysql/software/mysql-test/./t/update.test
-- Installing: /mysql/software/mysql-test/./t/debug_sync2.test
-- Installing: /mysql/software/mysql-test/./t/locale.test
-- Installing: /mysql/software/mysql-test/./t/key_cache.test
-- Installing: /mysql/software/mysql-test/./t/fulltext_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./t/change_user.test
-- Installing: /mysql/software/mysql-test/./t/comment_column2.test
-- Installing: /mysql/software/mysql-test/./t/partition_error.test
-- Installing: /mysql/software/mysql-test/./t/myisam-blob-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysqlbinlog_raw_mode.test
-- Installing: /mysql/software/mysql-test/./t/wl6443_deprecation.test
-- Installing: /mysql/software/mysql-test/./t/select_none.test
-- Installing: /mysql/software/mysql-test/./t/myisam_icp.test
-- Installing: /mysql/software/mysql-test/./t/ctype_cp932.test
-- Installing: /mysql/software/mysql-test/./t/loadxml.test
-- Installing: /mysql/software/mysql-test/./t/create_not_windows.test
-- Installing: /mysql/software/mysql-test/./t/mysqladmin.test
-- Installing: /mysql/software/mysql-test/./t/skip_grants-master.opt
-- Installing: /mysql/software/mysql-test/./t/query_cache_type_functionality.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_all-master.opt
-- Installing: /mysql/software/mysql-test/./t/auth_rpl-slave.opt
-- Installing: /mysql/software/mysql-test/./t/mysql_plugin.test
-- Installing: /mysql/software/mysql-test/./t/mysqldump-no-binlog.test
-- Installing: /mysql/software/mysql-test/./t/comment_table.test
-- Installing: /mysql/software/mysql-test/./t/timezone_grant.test
-- Installing: /mysql/software/mysql-test/./t/func_misc.test
-- Installing: /mysql/software/mysql-test/./t/events_stress.test
-- Installing: /mysql/software/mysql-test/./t/bug33509.test
-- Installing: /mysql/software/mysql-test/./t/func_aes.test
-- Installing: /mysql/software/mysql-test/./t/log_state-master.opt
-- Installing: /mysql/software/mysql-test/./t/rpl_mysqldump_slave.test
-- Installing: /mysql/software/mysql-test/./t/log_errchk.test
-- Installing: /mysql/software/mysql-test/./t/insert_notembedded.test
-- Installing: /mysql/software/mysql-test/./t/mysqltest.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8mb4.test
-- Installing: /mysql/software/mysql-test/./t/information_schema_parameters.test
-- Installing: /mysql/software/mysql-test/./t/innodb_ignore_builtin.test
-- Installing: /mysql/software/mysql-test/./t/gcc296.test
-- Installing: /mysql/software/mysql-test/./t/query_cache.test
-- Installing: /mysql/software/mysql-test/./t/grant_cache.test
-- Installing: /mysql/software/mysql-test/./t/ssl-sha512.test
-- Installing: /mysql/software/mysql-test/./t/myisam_row_rpl.test
-- Installing: /mysql/software/mysql-test/./t/ctype_gbk_binlog.test
-- Installing: /mysql/software/mysql-test/./t/perror-win.test
-- Installing: /mysql/software/mysql-test/./t/secure_file_priv_win.test
-- Installing: /mysql/software/mysql-test/./t/fulltext_plugin.test
-- Installing: /mysql/software/mysql-test/./t/partition_bug18198.test
-- Installing: /mysql/software/mysql-test/./t/truncate.test
-- Installing: /mysql/software/mysql-test/./t/events_microsec.test
-- Installing: /mysql/software/mysql-test/./t/long_tmpdir-master.opt
-- Installing: /mysql/software/mysql-test/./t/join_nested_bka.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr.test
-- Installing: /mysql/software/mysql-test/./t/group_min_max.test
-- Installing: /mysql/software/mysql-test/./t/fulltext3.test
-- Installing: /mysql/software/mysql-test/./t/bug46261-master.opt
-- Installing: /mysql/software/mysql-test/./t/repair.test
-- Installing: /mysql/software/mysql-test/./t/insert_update.test
-- Installing: /mysql/software/mysql-test/./t/events_logs_tests.test
-- Installing: /mysql/software/mysql-test/./t/mysqld--help-notwin.test
-- Installing: /mysql/software/mysql-test/./t/innodb_recovery_with_upper_case_names.test
-- Installing: /mysql/software/mysql-test/./t/view_grant.test
-- Installing: /mysql/software/mysql-test/./t/sp_gis.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_mat_nosj.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256.test
-- Installing: /mysql/software/mysql-test/./t/subselect_gis.test
-- Installing: /mysql/software/mysql-test/./t/mysqlshow.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_table4-master.opt
-- Installing: /mysql/software/mysql-test/./t/create_select_tmp.test
-- Installing: /mysql/software/mysql-test/./t/strict.test
-- Installing: /mysql/software/mysql-test/./t/mysql_delimiter_source.sql
-- Installing: /mysql/software/mysql-test/./t/drop.test
-- Installing: /mysql/software/mysql-test/./t/multi_plugin_load.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_view.test
-- Installing: /mysql/software/mysql-test/./t/trigger_notembedded.test
-- Installing: /mysql/software/mysql-test/./t/index_merge_delete.test
-- Installing: /mysql/software/mysql-test/./t/mysqldump-no-binlog-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_ldml-master.opt
-- Installing: /mysql/software/mysql-test/./t/sp-lock.test
-- Installing: /mysql/software/mysql-test/./t/wl6301_3-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_all-master.opt
-- Installing: /mysql/software/mysql-test/./t/bug58669.test
-- Installing: /mysql/software/mysql-test/./t/ctype_latin1.test
-- Installing: /mysql/software/mysql-test/./t/temporal_literal.test
-- Installing: /mysql/software/mysql-test/./t/partition_not_windows-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_latin2.test
-- Installing: /mysql/software/mysql-test/./t/mix2_myisam_ucs2.test
-- Installing: /mysql/software/mysql-test/./t/implicit_commit.test
-- Installing: /mysql/software/mysql-test/./t/heap.test
-- Installing: /mysql/software/mysql-test/./t/heap_btree.test
-- Installing: /mysql/software/mysql-test/./t/parser_bug21114_innodb.test
-- Installing: /mysql/software/mysql-test/./t/parser_precedence.test
-- Installing: /mysql/software/mysql-test/./t/sp-prelocking.test
-- Installing: /mysql/software/mysql-test/./t/ctype_eucjpms.test
-- Installing: /mysql/software/mysql-test/./t/subquery_nomat_nosj.test
-- Installing: /mysql/software/mysql-test/./t/timezone.test
-- Installing: /mysql/software/mysql-test/./t/partition_datatype.test
-- Installing: /mysql/software/mysql-test/./t/index_merge_insert-and-replace.test
-- Installing: /mysql/software/mysql-test/./t/empty_table.test
-- Installing: /mysql/software/mysql-test/./t/ddl_i18n_utf8.test
-- Installing: /mysql/software/mysql-test/./t/mysql.test
-- Installing: /mysql/software/mysql-test/./t/analyze.test
-- Installing: /mysql/software/mysql-test/./t/mysql_embedded_client_test.test
-- Installing: /mysql/software/mysql-test/./t/partition_rename_longfilename.test
-- Installing: /mysql/software/mysql-test/./t/log_tables.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_dupsweed.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_icp-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_utf32.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_mixed_tmpdir-master.sh
-- Installing: /mysql/software/mysql-test/./t/grant.test
-- Installing: /mysql/software/mysql-test/./t/merge.test
-- Installing: /mysql/software/mysql-test/./t/status2.test
-- Installing: /mysql/software/mysql-test/./t/ps_11bugs.test
-- Installing: /mysql/software/mysql-test/./t/partition_windows.test
-- Installing: /mysql/software/mysql-test/./t/warnings.test
-- Installing: /mysql/software/mysql-test/./t/status-master.opt
-- Installing: /mysql/software/mysql-test/./t/sp_trans.test
-- Installing: /mysql/software/mysql-test/./t/count_distinct2-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysqlbinlog_debug.test
-- Installing: /mysql/software/mysql-test/./t/wl6301_1_not_windows-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_not_windows.test
-- Installing: /mysql/software/mysql-test/./t/wl6301_1_not_windows.test
-- Installing: /mysql/software/mysql-test/./t/derived.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256_server_default_tls.test
-- Installing: /mysql/software/mysql-test/./t/server_uuid.test
-- Installing: /mysql/software/mysql-test/./t/key_cache-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_mb.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db_refs.test
-- Installing: /mysql/software/mysql-test/./t/lock_multi_bug38499.test
-- Installing: /mysql/software/mysql-test/./t/rollback.test
-- Installing: /mysql/software/mysql-test/./t/sp-dynamic.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_all.test
-- Installing: /mysql/software/mysql-test/./t/cast.test
-- Installing: /mysql/software/mysql-test/./t/func_group.test
-- Installing: /mysql/software/mysql-test/./t/disabled_replication.test
-- Installing: /mysql/software/mysql-test/./t/ssl_crl.test
-- Installing: /mysql/software/mysql-test/./t/comments.test
-- Installing: /mysql/software/mysql-test/./t/alias.test
-- Installing: /mysql/software/mysql-test/./t/multi_update_innodb.test
-- Installing: /mysql/software/mysql-test/./t/ctype_filesystem-master.opt
-- Installing: /mysql/software/mysql-test/./t/plugin_load_option-master.opt
-- Installing: /mysql/software/mysql-test/./t/join_crash.test
-- Installing: /mysql/software/mysql-test/./t/join_cache_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/foreign_key.test
-- Installing: /mysql/software/mysql-test/./t/events_embedded.test
-- Installing: /mysql/software/mysql-test/./t/partition_open_files_limit-master.opt
-- Installing: /mysql/software/mysql-test/./t/log_empty_name.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_innodb_all_bka.test
-- Installing: /mysql/software/mysql-test/./t/sp-code.test
-- Installing: /mysql/software/mysql-test/./t/sp-error.test
-- Installing: /mysql/software/mysql-test/./t/grant3.test
-- Installing: /mysql/software/mysql-test/./t/shm.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_mat_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_none_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/flush.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_ps_no_prot-master.opt
-- Installing: /mysql/software/mysql-test/./t/execution_constants.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_mixed_tmpdir_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./t/named_pipe.test
-- Installing: /mysql/software/mysql-test/./t/endspace.test
-- Installing: /mysql/software/mysql-test/./t/multi_plugin_load_add-master.opt
-- Installing: /mysql/software/mysql-test/./t/query_cache_with_views.test
-- Installing: /mysql/software/mysql-test/./t/multi_statement.test
-- Installing: /mysql/software/mysql-test/./t/union.test
-- Installing: /mysql/software/mysql-test/./t/type_float.test
-- Installing: /mysql/software/mysql-test/./t/replace.test
-- Installing: /mysql/software/mysql-test/./t/mysql_embedded.test
-- Installing: /mysql/software/mysql-test/./t/archive_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./t/func_aes_cfb128.test
-- Installing: /mysql/software/mysql-test/./t/join_cache_bka.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_firstmatch.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_loosescan_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db_fix50030-master.opt
-- Installing: /mysql/software/mysql-test/./t/func_weight_string.test
-- Installing: /mysql/software/mysql-test/./t/func_in_icp.test
-- Installing: /mysql/software/mysql-test/./t/mysql_upgrade_ssl.test
-- Installing: /mysql/software/mysql-test/./t/partition_key_cache.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_debug.test
-- Installing: /mysql/software/mysql-test/./t/host_cache_size_functionality.test
-- Installing: /mysql/software/mysql-test/./t/strict_autoinc_2innodb.test
-- Installing: /mysql/software/mysql-test/./t/parser.test
-- Installing: /mysql/software/mysql-test/./t/information_schema.test
-- Installing: /mysql/software/mysql-test/./t/signal_code.test
-- Installing: /mysql/software/mysql-test/./t/multi_plugin_load_add2-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_list.test
-- Installing: /mysql/software/mysql-test/./t/errors.test
-- Installing: /mysql/software/mysql-test/./t/init_file.test
-- Installing: /mysql/software/mysql-test/./t/blackhole_plugin.test
-- Installing: /mysql/software/mysql-test/./t/heap_auto_increment.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_none.test
-- Installing: /mysql/software/mysql-test/./t/merge_innodb.test
-- Installing: /mysql/software/mysql-test/./t/grant3-master.opt
-- Installing: /mysql/software/mysql-test/./t/heap_hash.test
-- Installing: /mysql/software/mysql-test/./t/ssl_cipher.test
-- Installing: /mysql/software/mysql-test/./t/type_varchar.test
-- Installing: /mysql/software/mysql-test/./t/events_restart.test
-- Installing: /mysql/software/mysql-test/./t/bug17076131-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysqlbinlog-master.opt
-- Installing: /mysql/software/mysql-test/./t/rowid_order_innodb.test
-- Installing: /mysql/software/mysql-test/./t/tablespace.test
-- Installing: /mysql/software/mysql-test/./t/ctype_recoding.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_cost-master.opt
-- Installing: /mysql/software/mysql-test/./t/mysqld--help-win.test
-- Installing: /mysql/software/mysql-test/./t/query_cache-master.opt
-- Installing: /mysql/software/mysql-test/./t/odbc.test
-- Installing: /mysql/software/mysql-test/./t/consistent_snapshot.test
-- Installing: /mysql/software/mysql-test/./t/ssl_crl-master.opt
-- Installing: /mysql/software/mysql-test/./t/ps-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_charset.test
-- Installing: /mysql/software/mysql-test/./t/variables.test
-- Installing: /mysql/software/mysql-test/./t/sysdate_is_now-master.opt
-- Installing: /mysql/software/mysql-test/./t/lock.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8mb4_uca.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db_fix40123.test
-- Installing: /mysql/software/mysql-test/./t/show_profile.test
-- Installing: /mysql/software/mysql-test/./t/insert.test
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8mb4_myisam.test
-- Installing: /mysql/software/mysql-test/./t/ctype_binary.test
-- Installing: /mysql/software/mysql-test/./t/partition_index_myisam.test
-- Installing: /mysql/software/mysql-test/./t/disabled.def
-- Installing: /mysql/software/mysql-test/./t/sp-security.test
-- Installing: /mysql/software/mysql-test/./t/show_processlist.test
-- Installing: /mysql/software/mysql-test/./t/ipv6-master.opt
-- Installing: /mysql/software/mysql-test/./t/variables_debug.test
-- Installing: /mysql/software/mysql-test/./t/func_aes_ofb.test
-- Installing: /mysql/software/mysql-test/./t/mysqlhotcopy_myisam.test
-- Installing: /mysql/software/mysql-test/./t/func_default.test
-- Installing: /mysql/software/mysql-test/./t/events_trans_notembedded.test
-- Installing: /mysql/software/mysql-test/./t/bootstrap.test
-- Installing: /mysql/software/mysql-test/./t/bug46760-master.opt
-- Installing: /mysql/software/mysql-test/./t/skip_log_bin.test
-- Installing: /mysql/software/mysql-test/./t/fix_priv_tables.test
-- Installing: /mysql/software/mysql-test/./t/mysqlbinlog_raw_mode_win.test
-- Installing: /mysql/software/mysql-test/./t/multi_update2-master.opt
-- Installing: /mysql/software/mysql-test/./t/select_icp_mrr.test
-- Installing: /mysql/software/mysql-test/./t/merge-big.test
-- Installing: /mysql/software/mysql-test/./t/func_math.test
-- Installing: /mysql/software/mysql-test/./t/cache_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./t/gis.test
-- Installing: /mysql/software/mysql-test/./t/mysql_not_windows.test
-- Installing: /mysql/software/mysql-test/./t/lock_tables_lost_commit.test
-- Installing: /mysql/software/mysql-test/./t/func_in_all.test
-- Installing: /mysql/software/mysql-test/./t/partition_federated.test
-- Installing: /mysql/software/mysql-test/./t/shm-master.opt
-- Installing: /mysql/software/mysql-test/./t/myisam_recover-master.opt
-- Installing: /mysql/software/mysql-test/./t/join_nested_bka_nixbnl.test
-- Installing: /mysql/software/mysql-test/./t/union-master.opt
-- Installing: /mysql/software/mysql-test/./t/timezone4.test
-- Installing: /mysql/software/mysql-test/./t/wl6219-upgrade.test
-- Installing: /mysql/software/mysql-test/./t/partition_innodb_semi_consistent.test
-- Installing: /mysql/software/mysql-test/./t/sp-fib-master.opt
-- Installing: /mysql/software/mysql-test/./t/innodb_mysql_sync.test
-- Installing: /mysql/software/mysql-test/./t/signal_demo3-master.opt
-- Installing: /mysql/software/mysql-test/./t/sp-fib.test
-- Installing: /mysql/software/mysql-test/./t/sp_sync.test
-- Installing: /mysql/software/mysql-test/./t/ps.test
-- Installing: /mysql/software/mysql-test/./t/symlink_windows.test
-- Installing: /mysql/software/mysql-test/./t/disconnect_on_expired_password_default.test
-- Installing: /mysql/software/mysql-test/./t/func_aes_cfb8.test
-- Installing: /mysql/software/mysql-test/./t/partition_binlog.test
-- Installing: /mysql/software/mysql-test/./t/func_concat.test
-- Installing: /mysql/software/mysql-test/./t/compare.test
-- Installing: /mysql/software/mysql-test/./t/sp-threads.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db_fix50117-master.opt
-- Installing: /mysql/software/mysql-test/./t/ctype_utf8-master.opt
-- Installing: /mysql/software/mysql-test/./t/read_only.test
-- Installing: /mysql/software/mysql-test/./t/strict_autoinc_3heap.test
-- Installing: /mysql/software/mysql-test/./t/ssl_connect.test
-- Installing: /mysql/software/mysql-test/./t/blackhole.test
-- Installing: /mysql/software/mysql-test/./t/implicit_char_to_num_conversion.test
-- Installing: /mysql/software/mysql-test/./t/events_2.test
-- Installing: /mysql/software/mysql-test/./t/sp_notembedded.test
-- Installing: /mysql/software/mysql-test/./t/explain_json_all.test
-- Installing: /mysql/software/mysql-test/./t/partition_index_innodb.test
-- Installing: /mysql/software/mysql-test/./t/wl6219-csv.test
-- Installing: /mysql/software/mysql-test/./t/ssl_crl_crlpath.test
-- Installing: /mysql/software/mysql-test/./t/alter_table.test
-- Installing: /mysql/software/mysql-test/./t/system_mysql_db_fix50117.test
-- Installing: /mysql/software/mysql-test/./t/schema.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_firstmatch_bka.test
-- Installing: /mysql/software/mysql-test/./t/lock_sync.test
-- Installing: /mysql/software/mysql-test/./t/table_open_cache_functionality.test
-- Installing: /mysql/software/mysql-test/./t/events_logs_tests-master.opt
-- Installing: /mysql/software/mysql-test/./t/init_file-master.opt
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256_server_default_tls-master.opt
-- Installing: /mysql/software/mysql-test/./t/lowercase_table_grant-master.opt
-- Installing: /mysql/software/mysql-test/./t/temp_table.test
-- Installing: /mysql/software/mysql-test/./t/archive_debug.test
-- Installing: /mysql/software/mysql-test/./t/partition_mgm.test
-- Installing: /mysql/software/mysql-test/./t/myisam_explain_non_select_none.test
-- Installing: /mysql/software/mysql-test/./t/func_encrypt-master.opt
-- Installing: /mysql/software/mysql-test/./t/multi_update2.test
-- Installing: /mysql/software/mysql-test/./t/bug12427262.test
-- Installing: /mysql/software/mysql-test/./t/myisam_debug.test
-- Installing: /mysql/software/mysql-test/./t/myisampack.test
-- Installing: /mysql/software/mysql-test/./t/archive.test
-- Installing: /mysql/software/mysql-test/./t/mysqldump.test
-- Installing: /mysql/software/mysql-test/./t/index_merge_update.test
-- Installing: /mysql/software/mysql-test/./t/events_time_zone.test
-- Installing: /mysql/software/mysql-test/./t/skip_log_bin-master.opt
-- Installing: /mysql/software/mysql-test/./t/lock_multi.test
-- Installing: /mysql/software/mysql-test/./t/merge_mmap-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_dupsweed_bkaunique.test
-- Installing: /mysql/software/mysql-test/./t/udf_skip_grants.test
-- Installing: /mysql/software/mysql-test/./t/innodb_ignore_builtin-master.opt
-- Installing: /mysql/software/mysql-test/./t/explain_json_none.test
-- Installing: /mysql/software/mysql-test/./t/sp-vars.test
-- Installing: /mysql/software/mysql-test/./t/file_contents.test
-- Installing: /mysql/software/mysql-test/./t/plugin-master.opt
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_qa_3.test
-- Installing: /mysql/software/mysql-test/./t/subquery_mat_none.test
-- Installing: /mysql/software/mysql-test/./t/ps_not_windows.test
-- Installing: /mysql/software/mysql-test/./t/explain.test
-- Installing: /mysql/software/mysql-test/./t/ctype_filename.test
-- Installing: /mysql/software/mysql-test/./t/sp.test
-- Installing: /mysql/software/mysql-test/./t/init_connect.test
-- Installing: /mysql/software/mysql-test/./t/type_timestamp_explicit.test
-- Installing: /mysql/software/mysql-test/./t/sp_notembedded-master.opt
-- Installing: /mysql/software/mysql-test/./t/partition_debug_sync.test
-- Installing: /mysql/software/mysql-test/./t/ssl_crl_clients_valid-master.opt
-- Installing: /mysql/software/mysql-test/./t/null_key_icp.test
-- Installing: /mysql/software/mysql-test/./t/type_decimal.test
-- Installing: /mysql/software/mysql-test/./t/case.test
-- Installing: /mysql/software/mysql-test/./t/lowercase_fs_off.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_all_bka_nixbnl-master.opt
-- Installing: /mysql/software/mysql-test/./t/log_tables_upgrade.test
-- Installing: /mysql/software/mysql-test/./t/status_bug17954.test
-- Installing: /mysql/software/mysql-test/./t/named_pipe-master.opt
-- Installing: /mysql/software/mysql-test/./t/server_uuid_embedded.test
-- Installing: /mysql/software/mysql-test/./t/join_nested.test
-- Installing: /mysql/software/mysql-test/./t/partition.test
-- Installing: /mysql/software/mysql-test/./t/mysql_client_test.test
-- Installing: /mysql/software/mysql-test/./t/temp_pool.test
-- Installing: /mysql/software/mysql-test/./t/subquery_sj_all_bkaunique-master.opt
-- Installing: /mysql/software/mysql-test/./t/join_cache_bnl.test
-- Installing: /mysql/software/mysql-test/./t/user_var-binlog.test
-- Installing: /mysql/software/mysql-test/./t/grant4.test
-- Installing: /mysql/software/mysql-test/./t/query_cache_notembedded.test
-- Installing: /mysql/software/mysql-test/./t/ctype_gbk.test
-- Installing: /mysql/software/mysql-test/./t/subquery_nomat_nosj_bka.test
-- Installing: /mysql/software/mysql-test/./t/concurrent_innodb_unsafelog-master.opt
-- Installing: /mysql/software/mysql-test/./t/subquery_all_bka.test
-- Installing: /mysql/software/mysql-test/./t/select_safe.test
-- Installing: /mysql/software/mysql-test/./t/profiling.test
-- Installing: /mysql/software/mysql-test/./t/plugin_auth_sha256_tls.test
-- Installing: /mysql/software/mysql-test/./t/innodb_mrr_cost.test
-- Installing: /mysql/software/mysql-test/./t/ps_3innodb-master.opt
-- Installing: /mysql/software/mysql-test/./t/myisam-blob.test
-- Installing: /mysql/software/mysql-test/./t/events_scheduling.test
-- Installing: /mysql/software/mysql-test/./t/warnings_engine_disabled.test
-- Installing: /mysql/software/mysql-test/./t/upgrade.test
-- Installing: /mysql/software/mysql-test/./t/myisam_crash_before_flush_keys.test
-- Installing: /mysql/software/mysql-test/./t/func_gconcat.test
-- Installing: /mysql/software/mysql-test/./include
-- Installing: /mysql/software/mysql-test/./include/wait_until_rows_count.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_chde.inc
-- Installing: /mysql/software/mysql-test/./include/master-slave.inc
-- Installing: /mysql/software/mysql-test/./include/binlog_inject_error.inc
-- Installing: /mysql/software/mysql-test/./include/have_plugin_auth.inc
-- Installing: /mysql/software/mysql-test/./include/daemon_example_bad_format.ini
-- Installing: /mysql/software/mysql-test/./include/ctype_datetime.inc
-- Installing: /mysql/software/mysql-test/./include/print_greedy_search_count.inc
-- Installing: /mysql/software/mysql-test/./include/not_var_link.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_like_range_f1f2.inc
-- Installing: /mysql/software/mysql-test/./include/have_symlink.inc
-- Installing: /mysql/software/mysql-test/./include/restart_readonly_mysqld.inc
-- Installing: /mysql/software/mysql-test/./include/ps_ddl_1.inc
-- Installing: /mysql/software/mysql-test/./include/wait_time_until_connected_again.inc
-- Installing: /mysql/software/mysql-test/./include/have_binlog_format_row.inc
-- Installing: /mysql/software/mysql-test/./include/gis_debug.inc
-- Installing: /mysql/software/mysql-test/./include/have_plugin_server.inc
-- Installing: /mysql/software/mysql-test/./include/have_innodb_4k.inc
-- Installing: /mysql/software/mysql-test/./include/have_ssl_communication.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_ndb_committed_to_binlog.inc
-- Installing: /mysql/software/mysql-test/./include/have_outfile.inc
-- Installing: /mysql/software/mysql-test/./include/not_threadpool.inc
-- Installing: /mysql/software/mysql-test/./include/not_relay_log_info_table.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_insert-and-replace.inc
-- Installing: /mysql/software/mysql-test/./include/default_mysqld_autosize.cnf
-- Installing: /mysql/software/mysql-test/./include/show_binlog_events2.inc
-- Installing: /mysql/software/mysql-test/./include/world_schema.inc
-- Installing: /mysql/software/mysql-test/./include/have_ndbapi_examples.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_query_to_fail.inc
-- Installing: /mysql/software/mysql-test/./include/file_does_not_exist.inc
-- Installing: /mysql/software/mysql-test/./include/ps_create.inc
-- Installing: /mysql/software/mysql-test/./include/subquery.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_like_escape.inc
-- Installing: /mysql/software/mysql-test/./include/have_not_innodb_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_intersect_dml.inc
-- Installing: /mysql/software/mysql-test/./include/load_sysvars.inc
-- Installing: /mysql/software/mysql-test/./include/have_innodb.inc
-- Installing: /mysql/software/mysql-test/./include/daemon_example_bad_soname.ini
-- Installing: /mysql/software/mysql-test/./include/have_util_nc.inc
-- Installing: /mysql/software/mysql-test/./include/show_msg.inc
-- Installing: /mysql/software/mysql-test/./include/show_binlog_using_logname.inc
-- Installing: /mysql/software/mysql-test/./include/have_optimizer_trace.inc
-- Installing: /mysql/software/mysql-test/./include/analyze-timeout.test
-- Installing: /mysql/software/mysql-test/./include/endspace.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_reset.inc
-- Installing: /mysql/software/mysql-test/./include/have_innodb_16k.inc
-- Installing: /mysql/software/mysql-test/./include/libdaemon_example.ini
-- Installing: /mysql/software/mysql-test/./include/begin_include_file.inc
-- Installing: /mysql/software/mysql-test/./include/is_embedded.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_inet.inc
-- Installing: /mysql/software/mysql-test/./include/python_with_json.inc
-- Installing: /mysql/software/mysql-test/./include/assert_grep.inc
-- Installing: /mysql/software/mysql-test/./include/have_32bit.inc
-- Installing: /mysql/software/mysql-test/./include/wait_innodb_all_purged.inc
-- Installing: /mysql/software/mysql-test/./include/ps_renew.inc
-- Installing: /mysql/software/mysql-test/./include/plugin.defs
-- Installing: /mysql/software/mysql-test/./include/strict_autoinc.inc
-- Installing: /mysql/software/mysql-test/./include/have_64bit.inc
-- Installing: /mysql/software/mysql-test/./include/no_valgrind_without_big.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_restore_master.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_to_sync_with_master.inc
-- Installing: /mysql/software/mysql-test/./include/uses_vardir.inc
-- Installing: /mysql/software/mysql-test/./include/wl6301.inc
-- Installing: /mysql/software/mysql-test/./include/show_relaylog_events.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_connection.inc
-- Installing: /mysql/software/mysql-test/./include/have_openssl.inc
-- Installing: /mysql/software/mysql-test/./include/shutdown_mysqld.inc
-- Installing: /mysql/software/mysql-test/./include/Load_data.inc
-- Installing: /mysql/software/mysql-test/./include/count_sessions.inc
-- Installing: /mysql/software/mysql-test/./include/have_case_sensitive_file_system.inc
-- Installing: /mysql/software/mysql-test/./include/gtid_step_assert.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_stmt_seq.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_set_gtid_mode.inc
-- Installing: /mysql/software/mysql-test/./include/no_protocol.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_generate_sync_chain.inc
-- Installing: /mysql/software/mysql-test/./include/have_sha256_rsa_auth.inc
-- Installing: /mysql/software/mysql-test/./include/have_nodebug.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_reconnect.inc
-- Installing: /mysql/software/mysql-test/./include/show_slave_status.inc
-- Installing: /mysql/software/mysql-test/./include/assert_command_output.inc
-- Installing: /mysql/software/mysql-test/./include/have_semisync_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/have_partition_open_file_limit.inc
-- Installing: /mysql/software/mysql-test/./include/world.inc
-- Installing: /mysql/software/mysql-test/./include/start_slave.inc
-- Installing: /mysql/software/mysql-test/./include/wait_until_disconnected.inc
-- Installing: /mysql/software/mysql-test/./include/rand.inc
-- Installing: /mysql/software/mysql-test/./include/wl6219-engine.test
-- Installing: /mysql/software/mysql-test/./include/create_table.inc
-- Installing: /mysql/software/mysql-test/./include/have_lowercase0.inc
-- Installing: /mysql/software/mysql-test/./include/not_master_info_table.inc
-- Installing: /mysql/software/mysql-test/./include/sp-vars.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_connect.inc
-- Installing: /mysql/software/mysql-test/./include/cleanup_fake_relay_log.inc
-- Installing: /mysql/software/mysql-test/./include/have_binlog_checksum_off.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_not_readonly.inc
-- Installing: /mysql/software/mysql-test/./include/not_gtid_enabled.inc
-- Installing: /mysql/software/mysql-test/./include/running_event_scheduler.inc
-- Installing: /mysql/software/mysql-test/./include/have_compress.inc
-- Installing: /mysql/software/mysql-test/./include/delete_anonymous_users.inc
-- Installing: /mysql/software/mysql-test/./include/gis_keys.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_events.inc
-- Installing: /mysql/software/mysql-test/./include/check_slave_param.inc
-- Installing: /mysql/software/mysql-test/./include/check_key_req.inc
-- Installing: /mysql/software/mysql-test/./include/join_cache.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_backup_id.inc
-- Installing: /mysql/software/mysql-test/./include/default_my.cnf
-- Installing: /mysql/software/mysql-test/./include/rpl_connection_slave.inc
-- Installing: /mysql/software/mysql-test/./include/innodb_trx_weight.inc
-- Installing: /mysql/software/mysql-test/./include/have_mrr.inc
-- Installing: /mysql/software/mysql-test/./include/ps_modify.inc
-- Installing: /mysql/software/mysql-test/./include/have_profiling.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_end.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_start_slaves.inc
-- Installing: /mysql/software/mysql-test/./include/have_ipv6.inc
-- Installing: /mysql/software/mysql-test/./include/gtid_step_reset.inc
-- Installing: /mysql/software/mysql-test/./include/grant_cache.inc
-- Installing: /mysql/software/mysql-test/./include/ddl_i18n.check_events.inc
-- Installing: /mysql/software/mysql-test/./include/innodb_pk_extension.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_unicode_latin.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_filesort2.inc
-- Installing: /mysql/software/mysql-test/./include/have_lowercase2.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_sql_error.inc
-- Installing: /mysql/software/mysql-test/./include/show_binary_logs.inc
-- Installing: /mysql/software/mysql-test/./include/sync_slave_io_with_master.inc
-- Installing: /mysql/software/mysql-test/./include/have_dynamic_loading.inc
-- Installing: /mysql/software/mysql-test/./include/setup_fake_relay_log.inc
-- Installing: /mysql/software/mysql-test/./include/explain.inc
-- Installing: /mysql/software/mysql-test/./include/uninstall_semisync.inc
-- Installing: /mysql/software/mysql-test/./include/not_windows_embedded.inc
-- Installing: /mysql/software/mysql-test/./include/range.inc
-- Installing: /mysql/software/mysql-test/./include/have_ucs2.inc
-- Installing: /mysql/software/mysql-test/./include/truncate_file.inc
-- Installing: /mysql/software/mysql-test/./include/have_firstmatch.inc
-- Installing: /mysql/software/mysql-test/./include/have_binlog_format_mixed_or_row.inc
-- Installing: /mysql/software/mysql-test/./include/diff_servers.inc
-- Installing: /mysql/software/mysql-test/./include/no_running_event_scheduler.inc
-- Installing: /mysql/software/mysql-test/./include/varchar.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_default_cluster.inc
-- Installing: /mysql/software/mysql-test/./include/not_openssl.inc
-- Installing: /mysql/software/mysql-test/./include/relocate_binlogs.inc
-- Installing: /mysql/software/mysql-test/./include/have_cp866.inc
-- Installing: /mysql/software/mysql-test/./include/check_events_off.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_update.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_unicode520.inc
-- Installing: /mysql/software/mysql-test/./include/not_embedded.inc
-- Installing: /mysql/software/mysql-test/./include/have_query_cache.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_connection_master.inc
-- Installing: /mysql/software/mysql-test/./include/check_ipv6.inc
-- Installing: /mysql/software/mysql-test/./include/have_plugin_interface.inc
-- Installing: /mysql/software/mysql-test/./include/have_utf32.inc
-- Installing: /mysql/software/mysql-test/./include/test_fieldsize.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_euro.inc
-- Installing: /mysql/software/mysql-test/./include/set_binlog_format_row.sql
-- Installing: /mysql/software/mysql-test/./include/rpl_start_server.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_8FA2C3.inc
-- Installing: /mysql/software/mysql-test/./include/check_slave_no_error.inc
-- Installing: /mysql/software/mysql-test/./include/have_gtid.inc
-- Installing: /mysql/software/mysql-test/./include/have_archive.inc
-- Installing: /mysql/software/mysql-test/./include/have_perfschema.inc
-- Installing: /mysql/software/mysql-test/./include/execute_with_statistics.inc
-- Installing: /mysql/software/mysql-test/./include/select.inc
-- Installing: /mysql/software/mysql-test/./include/show_all_binlogs.inc
-- Installing: /mysql/software/mysql-test/./include/io_thd_fault_injection.inc
-- Installing: /mysql/software/mysql-test/./include/ps_query.inc
-- Installing: /mysql/software/mysql-test/./include/check_concurrent_insert.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_row_img_parts_assertion.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_wait_connected.inc
-- Installing: /mysql/software/mysql-test/./include/wait_condition.inc
-- Installing: /mysql/software/mysql-test/./include/sync_slave_sql.inc
-- Installing: /mysql/software/mysql-test/./include/report-features.test
-- Installing: /mysql/software/mysql-test/./include/assert.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_innodb_like.inc
-- Installing: /mysql/software/mysql-test/./include/handler.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_restore_slave_eoption.inc
-- Installing: /mysql/software/mysql-test/./include/tpcb.inc
-- Installing: /mysql/software/mysql-test/./include/testdb_only.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_init.inc
-- Installing: /mysql/software/mysql-test/./include/function_defaults.inc
-- Installing: /mysql/software/mysql-test/./include/linux_sys_vars.inc
-- Installing: /mysql/software/mysql-test/./include/safe_set_to_maybe_ro_var.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_ror_cpk.inc
-- Installing: /mysql/software/mysql-test/./include/gtid_utils.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_loaddata_charset.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_hash_scan_assertion.inc
-- Installing: /mysql/software/mysql-test/./include/have_gbk.inc
-- Installing: /mysql/software/mysql-test/./include/have_validate_password_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/mtr_check.sql
-- Installing: /mysql/software/mysql-test/./include/start_mysqld.inc
-- Installing: /mysql/software/mysql-test/./include/force_restart.inc
-- Installing: /mysql/software/mysql-test/./include/connect2.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_like.inc
-- Installing: /mysql/software/mysql-test/./include/func_in.inc
-- Installing: /mysql/software/mysql-test/./include/have_binlog_format_statement.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_sync.inc
-- Installing: /mysql/software/mysql-test/./include/set_binlog_format_mixed.sql
-- Installing: /mysql/software/mysql-test/./include/weight_string_l14.inc
-- Installing: /mysql/software/mysql-test/./include/have_cp1250_ch.inc
-- Installing: /mysql/software/mysql-test/./include/stop_slave_io.inc
-- Installing: /mysql/software/mysql-test/./include/innodb_rollback_on_timeout.inc
-- Installing: /mysql/software/mysql-test/./include/show_master_logs.inc
-- Installing: /mysql/software/mysql-test/./include/default_mysqld.cnf
-- Installing: /mysql/software/mysql-test/./include/windows_sys_vars.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_delete.inc
-- Installing: /mysql/software/mysql-test/./include/ipv6_func.inc
-- Installing: /mysql/software/mysql-test/./include/expect_qep.inc
-- Installing: /mysql/software/mysql-test/./include/check_no_row_lock.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_single_col_setup.inc
-- Installing: /mysql/software/mysql-test/./include/system_db_struct.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge2.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_l4.inc
-- Installing: /mysql/software/mysql-test/./include/kill_query.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_row_img_general_loop.inc
-- Installing: /mysql/software/mysql-test/./include/have_mysql_upgrade.inc
-- Installing: /mysql/software/mysql-test/./include/order_by.inc
-- Installing: /mysql/software/mysql-test/./include/show_master_status.inc
-- Installing: /mysql/software/mysql-test/./include/ddl_i18n.check_triggers.inc
-- Installing: /mysql/software/mysql-test/./include/innodb-util.inc
-- Installing: /mysql/software/mysql-test/./include/show_events.inc
-- Installing: /mysql/software/mysql-test/./include/have_memcached_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_l2.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_change_topology.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge1.inc
-- Installing: /mysql/software/mysql-test/./include/show_all_relay_logs.inc
-- Installing: /mysql/software/mysql-test/./include/icp_tests.inc
-- Installing: /mysql/software/mysql-test/./include/not_ndb_default.inc
-- Installing: /mysql/software/mysql-test/./include/not_mts_slave_parallel_workers.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_2sweeps.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_to_start.inc
-- Installing: /mysql/software/mysql-test/./include/have_utf8.inc
-- Installing: /mysql/software/mysql-test/./include/have_binlog_format_row_or_statement.inc
-- Installing: /mysql/software/mysql-test/./include/show_binlog_events.inc
-- Installing: /mysql/software/mysql-test/./include/loaddata_autocom.inc
-- Installing: /mysql/software/mysql-test/./include/common-tests.inc
-- Installing: /mysql/software/mysql-test/./include/save_master_pos.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_status_var.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_ip_mix2.inc
-- Installing: /mysql/software/mysql-test/./include/have_QC_Disabled.inc
-- Installing: /mysql/software/mysql-test/./include/check_shared_row_lock.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_l1.inc
-- Installing: /mysql/software/mysql-test/./include/have_archive_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/have_utf8mb4.inc
-- Installing: /mysql/software/mysql-test/./include/stop_dump_threads.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_to_stop.inc
-- Installing: /mysql/software/mysql-test/./include/get_file_permissions.inc
-- Installing: /mysql/software/mysql-test/./include/have_exampledb.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_io_error.inc
-- Installing: /mysql/software/mysql-test/./include/add_anonymous_users.inc
-- Installing: /mysql/software/mysql-test/./include/ps_modify1.inc
-- Installing: /mysql/software/mysql-test/./include/have_eucjpms.inc
-- Installing: /mysql/software/mysql-test/./include/subquery_sj_innodb.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_multi_col_setup.inc
-- Installing: /mysql/software/mysql-test/./include/have_binlog_format_mixed.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_io_to_start.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_german.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_ipv6.inc
-- Installing: /mysql/software/mysql-test/./include/not_windows.inc
-- Installing: /mysql/software/mysql-test/./include/check-warnings.test
-- Installing: /mysql/software/mysql-test/./include/restart_slave_sql.inc
-- Installing: /mysql/software/mysql-test/./include/bug38347.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_sql_to_stop.inc
-- Installing: /mysql/software/mysql-test/./include/ddl_i18n.check_views.inc
-- Installing: /mysql/software/mysql-test/./include/have_ssl.inc
-- Installing: /mysql/software/mysql-test/./include/eval.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_8EA1.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_ip_mix.inc
-- Installing: /mysql/software/mysql-test/./include/have_ndb_extra.inc
-- Installing: /mysql/software/mysql-test/./include/not_parallel.inc
-- Installing: /mysql/software/mysql-test/./include/wait_until_count_sessions.inc
-- Installing: /mysql/software/mysql-test/./include/have_semijoin.inc
-- Installing: /mysql/software/mysql-test/./include/search_pattern.inc
-- Installing: /mysql/software/mysql-test/./include/set_binlog_format_statement.sql
-- Installing: /mysql/software/mysql-test/./include/min_null_cond.inc
-- Installing: /mysql/software/mysql-test/./include/wait_condition_sp.inc
-- Installing: /mysql/software/mysql-test/./include/query_cache_sql_prepare.inc
-- Installing: /mysql/software/mysql-test/./include/read_file_to_var.inc
-- Installing: /mysql/software/mysql-test/./include/mrr_tests.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_8140.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_multi_engine2.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_connection_slave1.inc
-- Installing: /mysql/software/mysql-test/./include/have_cp1251.inc
-- Installing: /mysql/software/mysql-test/./include/mysqlbinlog_raw_mode.inc
-- Installing: /mysql/software/mysql-test/./include/have_cp932.inc
-- Installing: /mysql/software/mysql-test/./include/check_slave_is_running.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_sql_error_and_skip.inc
-- Installing: /mysql/software/mysql-test/./include/unsafe_binlog.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_utf8mb4.inc
-- Installing: /mysql/software/mysql-test/./include/have_log_bin.inc
-- Installing: /mysql/software/mysql-test/./include/have_local_infile.inc
-- Installing: /mysql/software/mysql-test/./include/have_multi_ndb.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_stop_slaves.inc
-- Installing: /mysql/software/mysql-test/./include/search_pattern_in_file.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_like_ignorable.inc
-- Installing: /mysql/software/mysql-test/./include/windows.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_param.inc
-- Installing: /mysql/software/mysql-test/./include/have_big5.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_multi_engine.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_stop_server.inc
-- Installing: /mysql/software/mysql-test/./include/concurrent.inc
-- Installing: /mysql/software/mysql-test/./include/not_sha256_rsa_auth.inc
-- Installing: /mysql/software/mysql-test/./include/have_ndb.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_have_online_alter.inc
-- Installing: /mysql/software/mysql-test/./include/big_test.inc
-- Installing: /mysql/software/mysql-test/./include/not_as_root.inc
-- Installing: /mysql/software/mysql-test/./include/check_ftwrl_compatible.inc
-- Installing: /mysql/software/mysql-test/./include/have_valgrind.inc
-- Installing: /mysql/software/mysql-test/./include/show_rpl_debug_info.inc
-- Installing: /mysql/software/mysql-test/./include/mysqlhotcopy.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_row_img_parts_master_slave.inc
-- Installing: /mysql/software/mysql-test/./include/read_many_rows.inc
-- Installing: /mysql/software/mysql-test/./include/implicit_commit_helper.inc
-- Installing: /mysql/software/mysql-test/./include/have_binlog_format_mixed_or_statement.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_8bit.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_query_to_succeed.inc
-- Installing: /mysql/software/mysql-test/./include/have_lowercase1.inc
-- Installing: /mysql/software/mysql-test/./include/have_crypt.inc
-- Installing: /mysql/software/mysql-test/./include/stop_slave.inc
-- Installing: /mysql/software/mysql-test/./include/have_materialization.inc
-- Installing: /mysql/software/mysql-test/./include/default_ndbd.cnf
-- Installing: /mysql/software/mysql-test/./include/ndb_backup.inc
-- Installing: /mysql/software/mysql-test/./include/check_qep.inc
-- Installing: /mysql/software/mysql-test/./include/analyze-sync_with_master.test
-- Installing: /mysql/software/mysql-test/./include/weight_string_A1A1.inc
-- Installing: /mysql/software/mysql-test/./include/have_latin2_ch.inc
-- Installing: /mysql/software/mysql-test/./include/greedy_search_drop_tables.inc
-- Installing: /mysql/software/mysql-test/./include/only_mts_slave_parallel_workers.inc
-- Installing: /mysql/software/mysql-test/./include/view_alias.inc
-- Installing: /mysql/software/mysql-test/./include/wait_show_condition.inc
-- Installing: /mysql/software/mysql-test/./include/query_cache.inc
-- Installing: /mysql/software/mysql-test/./include/sync_slave_io.inc
-- Installing: /mysql/software/mysql-test/./include/check-testcase.test
-- Installing: /mysql/software/mysql-test/./include/explain_non_select.inc
-- Installing: /mysql/software/mysql-test/./include/have_csv.inc
-- Installing: /mysql/software/mysql-test/./include/have_ssl_crypto_functs.inc
-- Installing: /mysql/software/mysql-test/./include/have_example_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_l3.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_for_each_slave.inc
-- Installing: /mysql/software/mysql-test/./include/greedy_search_load_tables.inc
-- Installing: /mysql/software/mysql-test/./include/get_relay_log_pos.inc
-- Installing: /mysql/software/mysql-test/./include/show_delayed_slave_state.inc
-- Installing: /mysql/software/mysql-test/./include/have_case_insensitive_file_system.inc
-- Installing: /mysql/software/mysql-test/./include/have_geometry.inc
-- Installing: /mysql/software/mysql-test/./include/innodb-index.inc
-- Installing: /mysql/software/mysql-test/./include/have_blackhole_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_row_img_set.inc
-- Installing: /mysql/software/mysql-test/./include/ipv6_clients.inc
-- Installing: /mysql/software/mysql-test/./include/write_result_to_file.inc
-- Installing: /mysql/software/mysql-test/./include/have_innodb_8k.inc
-- Installing: /mysql/software/mysql-test/./include/have_simple_parser.inc
-- Installing: /mysql/software/mysql-test/./include/subquery_sj.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_default_connections.inc
-- Installing: /mysql/software/mysql-test/./include/check_ipv4_mapped.inc
-- Installing: /mysql/software/mysql-test/./include/sync_slave_sql_with_io.inc
-- Installing: /mysql/software/mysql-test/./include/have_null_audit_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/mix2.inc
-- Installing: /mysql/software/mysql-test/./include/have_euckr.inc
-- Installing: /mysql/software/mysql-test/./include/purge_first_log.inc
-- Installing: /mysql/software/mysql-test/./include/mysqlbinlog_have_debug.inc
-- Installing: /mysql/software/mysql-test/./include/save_io_thread_pos.inc
-- Installing: /mysql/software/mysql-test/./include/stop_slave_sql.inc
-- Installing: /mysql/software/mysql-test/./include/gis_generic.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_sql_to_start.inc
-- Installing: /mysql/software/mysql-test/./include/not_ssl.inc
-- Installing: /mysql/software/mysql-test/./include/have_utf16.inc
-- Installing: /mysql/software/mysql-test/./include/gtid_utils_end.inc
-- Installing: /mysql/software/mysql-test/./include/not_crashrep.inc
-- Installing: /mysql/software/mysql-test/./include/mrr_innodb_tests.inc
-- Installing: /mysql/software/mysql-test/./include/one_thread_per_connection.inc
-- Installing: /mysql/software/mysql-test/./include/ib_logfile_size_check.inc
-- Installing: /mysql/software/mysql-test/./include/world_schema1.inc
-- Installing: /mysql/software/mysql-test/./include/have_debug_sync.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_pad_space.inc
-- Installing: /mysql/software/mysql-test/./include/mysqltest-x.inc
-- Installing: /mysql/software/mysql-test/./include/write_var_to_file.inc
-- Installing: /mysql/software/mysql-test/./include/have_engine_condition_pushdown.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_numconv.inc
-- Installing: /mysql/software/mysql-test/./include/show_msg80.inc
-- Installing: /mysql/software/mysql-test/./include/have_daemon_example_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/have_mysql_no_login_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/have_udf.inc
-- Installing: /mysql/software/mysql-test/./include/mtr_warnings.sql
-- Installing: /mysql/software/mysql-test/./include/get_ndb_epochs.inc
-- Installing: /mysql/software/mysql-test/./include/default_client.cnf
-- Installing: /mysql/software/mysql-test/./include/have_loosescan.inc
-- Installing: /mysql/software/mysql-test/./include/mysql_upgrade_preparation.inc
-- Installing: /mysql/software/mysql-test/./include/have_ujis.inc
-- Installing: /mysql/software/mysql-test/./include/kill_query_and_diff_master_slave.inc
-- Installing: /mysql/software/mysql-test/./include/not_valgrind.inc
-- Installing: /mysql/software/mysql-test/./include/check_ftwrl_incompatible.inc
-- Installing: /mysql/software/mysql-test/./include/have_binlog_rows_query.inc
-- Installing: /mysql/software/mysql-test/./include/test_outfile.inc
-- Installing: /mysql/software/mysql-test/./include/have_federated_plugin.inc
-- Installing: /mysql/software/mysql-test/./include/index_merge_ror.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_restart_server.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_filesort.inc
-- Installing: /mysql/software/mysql-test/./include/func_aes_block.inc
-- Installing: /mysql/software/mysql-test/./include/explain_utils.inc
-- Installing: /mysql/software/mysql-test/./include/end_include_file.inc
-- Installing: /mysql/software/mysql-test/./include/have_koi8r.inc
-- Installing: /mysql/software/mysql-test/./include/start_slave_sql.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_setup_slave.inc
-- Installing: /mysql/software/mysql-test/./include/have_blackhole.inc
-- Installing: /mysql/software/mysql-test/./include/show_slave_hosts.inc
-- Installing: /mysql/software/mysql-test/./include/have_tis620.inc
-- Installing: /mysql/software/mysql-test/./include/change_file_perms.inc
-- Installing: /mysql/software/mysql-test/./include/not_ndb.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string_l12.inc
-- Installing: /mysql/software/mysql-test/./include/wait_until_connected_again.inc
-- Installing: /mysql/software/mysql-test/./include/ipv6.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_connection_master1.inc
-- Installing: /mysql/software/mysql-test/./include/install_semisync.inc
-- Installing: /mysql/software/mysql-test/./include/filter_file.inc
-- Installing: /mysql/software/mysql-test/./include/not_binlog_format_row.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_czech.inc
-- Installing: /mysql/software/mysql-test/./include/null_key.inc
-- Installing: /mysql/software/mysql-test/./include/deadlock.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_utf8_table.inc
-- Installing: /mysql/software/mysql-test/./include/vardir_size_check.inc
-- Installing: /mysql/software/mysql-test/./include/explain_json.inc
-- Installing: /mysql/software/mysql-test/./include/ddl_i18n.check_sp.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_regex.inc
-- Installing: /mysql/software/mysql-test/./include/mix1.inc
-- Installing: /mysql/software/mysql-test/./include/mix2_ucs2.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_heap.inc
-- Installing: /mysql/software/mysql-test/./include/have_index_condition_pushdown.inc
-- Installing: /mysql/software/mysql-test/./include/tpcb_disk_data.inc
-- Installing: /mysql/software/mysql-test/./include/function_defaults_notembedded.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_ascii_order.inc
-- Installing: /mysql/software/mysql-test/./include/memcache_config.inc
-- Installing: /mysql/software/mysql-test/./include/not_blackhole.inc
-- Installing: /mysql/software/mysql-test/./include/have_partition.inc
-- Installing: /mysql/software/mysql-test/./include/linux.inc
-- Installing: /mysql/software/mysql-test/./include/rowid_order.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_diff.inc
-- Installing: /mysql/software/mysql-test/./include/force_restart_if_skipped.inc
-- Installing: /mysql/software/mysql-test/./include/diff_tables.inc
-- Installing: /mysql/software/mysql-test/./include/check_var_limit.inc
-- Installing: /mysql/software/mysql-test/./include/partition_date_range.inc
-- Installing: /mysql/software/mysql-test/./include/commit.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_multi_engine3.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_binlog_event.inc
-- Installing: /mysql/software/mysql-test/./include/start_slave_io.inc
-- Installing: /mysql/software/mysql-test/./include/mysqldump.inc
-- Installing: /mysql/software/mysql-test/./include/have_sjis.inc
-- Installing: /mysql/software/mysql-test/./include/parser_bug21114.inc
-- Installing: /mysql/software/mysql-test/./include/weight_string.inc
-- Installing: /mysql/software/mysql-test/./include/have_gb2312.inc
-- Installing: /mysql/software/mysql-test/./include/ctype_common.inc
-- Installing: /mysql/software/mysql-test/./include/sync_slave_sql_with_master.inc
-- Installing: /mysql/software/mysql-test/./include/wait_for_slave_io_to_stop.inc
-- Installing: /mysql/software/mysql-test/./include/mysqld--help.inc
-- Installing: /mysql/software/mysql-test/./include/partition_default_functions.inc
-- Installing: /mysql/software/mysql-test/./include/check_key_reads.inc
-- Installing: /mysql/software/mysql-test/./include/no_running_events.inc
-- Installing: /mysql/software/mysql-test/./include/rpl_udf.inc
-- Installing: /mysql/software/mysql-test/./include/have_dbi_dbd-mysql.inc
-- Installing: /mysql/software/mysql-test/./include/have_debug.inc
-- Installing: /mysql/software/mysql-test/./include/check_no_concurrent_insert.inc
-- Installing: /mysql/software/mysql-test/./include/subquery_mat.inc
-- Installing: /mysql/software/mysql-test/./include/ndb_backup_print.inc
-- Installing: /mysql/software/mysql-test/./include/ps_conv.inc
-- Installing: /mysql/software/mysql-test/./include/restart_mysqld.inc
-- Installing: /mysql/software/mysql-test/./include/have_ipv4_mapped.inc
-- Installing: /mysql/software/mysql-test/./README.stress
-- Installing: /mysql/software/mysql-test/./Makefile
-- Installing: /mysql/software/mysql-test/./suite
-- Installing: /mysql/software/mysql-test/./suite/parts
-- Installing: /mysql/software/mysql-test/./suite/parts/r
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_special_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter2_1_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_11.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_sub_parts_key_list_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-11-myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_range_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter3_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_debug_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_bit_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_key_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_int_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc2_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_sub_parts_key_list_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc2_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter2_2_2_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/part_supported_sql_func_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_basic_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_innodb_status_file.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_sub_parts_key_range_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_sub_parts_range_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_value_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_sub_parts_key_range_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-9-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_bit_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc0_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_7_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_syntax_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_datetime_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-1-myisam-modes.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_auto_increment_archive.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_special_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/part_ctype_utf32.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc0_memory.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exchange_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_reorganize_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_float_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_sub_parts_range_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_debug_sync_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_t55.out
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_decimal_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter1_1_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter3_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_auto_increment_blackhole.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-10-myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-1-innodb-modes.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-3-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter4_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc1_memory.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_15.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_7_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_int_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_basic_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_4_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_basic_symlink_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-10-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter1_1_2_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exchange_blackhole.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_list_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_hash_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/part_blocked_sql_func_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_8_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter2_1_2_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_float_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/part_blocked_sql_func_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_hash_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_4_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_5_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_engine_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_inv_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_range_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc1_archive.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter1_1_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_auto_increment_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_1_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_syntax_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter2_2_1_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-2-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_key_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc1_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter4_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_reorganize_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_8_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/part_supported_sql_func_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc2_archive.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter2_1_1_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-6-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exchange_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_char_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_inv_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_sub_parts_list_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_14.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter1_1_2_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_parts_list_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_basic_symlink_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_recover_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-2-myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/rpl_partition.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_debug.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-8-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc0_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-4-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter2_2_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_10.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_value_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/rpl-partition-dml-1-1-myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-9-myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_debug_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_1_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_auto_increment_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_6.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/rpl-partition-dml-1-1-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_char_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter1_2_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_repair_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc0_archive.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc1_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_engine_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_decimal_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exchange_archive.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_auto_increment_memory.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exchange_memory.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_5_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-11-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_alter1_2_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-5-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_2.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-7-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_3.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_datetime_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_myisam_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-1-myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_13.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_max_sub_parts_list_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_mgm_lc2_memory.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition_exch_qa_12.result
-- Installing: /mysql/software/mysql-test/./suite/parts/r/partition-dml-1-1-innodb.result
-- Installing: /mysql/software/mysql-test/./suite/parts/t
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter1_2_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/part_ctype_utf32.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_range_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_7_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_range_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_auto_increment_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_6.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/rpl_partition.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter2_2_2_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_list_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc2_memory.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_char_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_8_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter4_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc2_memory-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_4_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_debug_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-9-myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_list_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_key_list_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_reorganize_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_key_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc2_archive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_list_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_key_range_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-10-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_recover_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc1_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_list_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc1_memory-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_syntax_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_14.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter1_1_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_inv_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_debug_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_5_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_auto_increment_archive.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_debug_sync_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_inv_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_debug.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_bit_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_range_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_key_list_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_5_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_int_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_8_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc2_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exchange_blackhole.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc0_archive.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_13.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_basic_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-3-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-9-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_syntax_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter2_1_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_value_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_inv_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-8-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-10-myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_auto_increment_memory.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_reorganize_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_4_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_inv_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_hash_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_range_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-1-myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_key_list_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc0_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_key_range_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_special_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-11-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_1_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-5-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc1_archive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_key_range_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_list_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_value_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter2_2_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_range_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-1-myisam-modes.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc1_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_auto_increment_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_key_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/part_blocked_sql_func_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-7-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_special_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_range_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_decimal_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-4-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_innodb_status_file.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_12.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_special_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc1_archive.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_int_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_innodb_status_file-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/part_blocked_sql_func_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_basic_symlink_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_10.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-1-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_basic_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_bit_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc2_archive.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter4_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_list_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-2-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc2_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc1_memory.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_key_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_range_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_engine_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_datetime_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter2_1_2_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter2_1_1_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-11-myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_basic_symlink_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_15.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_char_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/part_supported_sql_func_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-2-myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_key_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter1_2_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc2_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_debug_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc1_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_3.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter1_1_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter3_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/part_supported_sql_func_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc0_memory.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_11.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_float_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_list_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter2_2_1_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exchange_archive.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_hash_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_list_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_repair_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_engine_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exchange_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter1_1_2_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_range_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_decimal_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_debug_sync_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_recover_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/rpl-partition-dml-1-1-myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_hash_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_1_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_auto_increment_blackhole.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter1_1_2_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-1-innodb-modes.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_7_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_alter3_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exchange_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_datetime_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc2_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_parts_hash_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc0_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_key_list_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exchange_memory.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_myisam_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_mgm_lc1_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/rpl-partition-dml-1-1-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_float_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition-dml-1-6-innodb.test
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_max_sub_parts_key_range_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/parts/t/partition_exch_qa_2.test
-- Installing: /mysql/software/mysql-test/./suite/parts/inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-5.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_qa_7.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_qa_1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_parts_list.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter_13.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_mediumint.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_parts_inv.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_varbinary.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-1-modes.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_check_read1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_key_4col.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml_cr_tab.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_fail_exchange.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_datetime.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_bigint.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_int.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-11.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_syntax_1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_crash_exchange.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_fail.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_trigg1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_qa_8.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_basic_symlink.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_enum.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_key_8col.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_check.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_year.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_crash_change.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_qa_13.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_double.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_qa_4.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_syntax.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter_11.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter_1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_float.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_sub_parts_list.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_parts_key.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_check_read2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_crash_add.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_blob.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter2_1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_supported_sql_funcs_delete.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_directory.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_date.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_set.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_bit.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_layout_check2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_12.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter1_1_2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_key_32col.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_supported_sql_funcs.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-8.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter3.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_binary.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_crash_drop.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_tinyint.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_parts_hash.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_blocked_sql_funcs_main.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter4.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_key_16col.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_fail_t2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_qa.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_char.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-3.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_mgm_crash.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_engine.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_check_read.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_crash_t2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_check_drop.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_sub_parts_key_list.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition.pre
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_fail_add.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_text.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_crash.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_value.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_exchange.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_fail_change.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-7.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_blocked_sql_funcs.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_trigg3.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_supported_sql_funcs_main.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_mgm.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_tabs.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_parts_range.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_10.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_decimal.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter2_2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-10.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_trigg2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml_ins_tab.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter1_1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_smallint.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter_41.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_drop_tabs.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_cleanup.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_auto_increment.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/part_exch_qa_5.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_fail_drop.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_11.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_alter1_2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_sub_parts_range.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-4.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_layout.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_syntax_2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_max_sub_parts_key_range.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_layout_check1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/rpl-partition-dml-1-1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-6.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_time.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition-dml-1-9.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_timestamp.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_methods2.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_varchar.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/methods1.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_20.inc
-- Installing: /mysql/software/mysql-test/./suite/parts/inc/partition_methods1.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs.pl
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/README
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs/master-slave.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs/update_test_cases
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs/master-slave-bhs.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs/rpl_1slave_base.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs/default.rules
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/bhs/my.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/checksum.pl
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/README.bhs
-- Installing: /mysql/software/mysql-test/./suite/rpl/extension/README.checksum
-- Installing: /mysql/software/mysql-test/./suite/rpl/combinations
-- Installing: /mysql/software/mysql-test/./suite/rpl/README
-- Installing: /mysql/software/mysql-test/./suite/rpl/r
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_init_slave_errors.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_rewrite_db_filter.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_temporal_fractional.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_innodb_mixed_dml.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_func002.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_critical_errors.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_heartbeat_2slave.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe_small.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_mixed_crash_safe.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_unsafe_funcs.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mixed_mixing_engines.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_semi_sync_uninstall_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_idempotency.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp010.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_insert_delayed.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_row_event_max_size.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_insert_delayed.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_implicit_commit_binlog.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_savepoint.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_test_framework.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_bug26395.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_failover.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_NOW.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_change_master.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_tabledefs_2myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_temporary_errors.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_not_null_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_mixing_engines.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_corruption.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_skip_slave_err_warnings.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_timezone.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_create_tmp_table_if_not_exists.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddata_symlink.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_tmp_table_and_DDL.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_start_stop_slave.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_insert_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mts_gtids_restart_slave_io_lost_trx.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_heartbeat.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_max_relay_size.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_read_old_relay_log_info.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_semi_sync_group_commit_deadlock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_server_id1.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sp.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_000010.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_until.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_drop_temp_gtid.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_replicate_event_after_sync_stage.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_relay_space_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_report.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_bug33931.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_max_relay_size.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_drop_temp.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_flushlog_loop.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_loaddata_concurrent.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_spec_variables.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_binlog_errors.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_relayrotate.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddatalocal.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_invoked_features.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_heartbeat_basic.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_idx_full.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_begin_commit_rollback.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_partition_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp001.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_extra_col_slave_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_auto_increment_bug33029.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mts_debug.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_extra_col_master_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_multi_query.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_binlog_corruption.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_insert_id_pk.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_commit_after_flush.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_semi_sync_future_logpos.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp007_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_slave_load_tmpdir_not_exist.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_basic_3innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_mts_rec_crash_safe.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_mode_off_new_master.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_known_bugs_detection.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_recovery_replicate_same_server_id.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sequential.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe_checksum.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_until.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_change_master.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_circular_for_4_hosts.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_replicate_rewrite_db.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_switch_sequential.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_optimize.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_record_find_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_conflicts.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_mixing_engines.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddata.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_apply_binlog_with_anonymous_gtid.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_recovery_empty_sqlthd_pos.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_LD_INFILE.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ignore_table_filter_sensitive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_mode_on_new_master.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_do_table_filter_insensitive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_partition_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_multi_db.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_user_variables.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sbm_previous_gtid_event.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sporadic_master.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_typeconv_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_ignorable_event.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_foreign_key_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_wide_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_kill_query.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_fallback.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_geometry.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_stress_failover.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_EE_err2.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_switch_stm_row_mixed.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_do_table_filter_sensitive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_show_slave_status_deadlock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_blackhole.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_skip_ddl_errors_cli.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_slave_load_in.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mts_execute_partial_trx_with_auto_pos_off.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_mts_show_relaylog_events.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_replicate_ignore_db.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_multi_delete2.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_rotate_purge_deadlock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_log_pos.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_trig002.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_start_stop.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_slave_status.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ignore_grant.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_row_show_relaylog_events.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_temp_table_mix_row.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_drop_db_fail.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_innodb_mixed_ddl.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_empty_master_host.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_show_relaylog_events.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_auto_increment_bug45679.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_rec_comp_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_stop_middle_group.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_apply_binlog_with_anonymous_gtid_when_gtid_mode_on.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_ignore_table_filter_insensitive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_view01.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_rotate_row_trans.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mixed_implicit_commit_binlog.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_conflicts.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_multi_update3.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_000013.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_slave_start.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_basic_8partition.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_get_master_version_and_clock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_inexist_tbl.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_auto_increment.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_master_pos_wait.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_filter_warnings.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_group_commit_deadlock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_until_pos_middle_gtid.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_mix_mts_show_relaylog_events.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_server_uuid.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_auto_increment_update_failure.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ddl.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_semi_sync_non_group_commit_deadlock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_lcase_tblnames_rewrite_db.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_alter_db.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_multi_update.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_checksum_cache.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_crash_safe.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_auto_increment_11932.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_colSize.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl000001.b.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_drop.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_general_log.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_mts_crash_safe.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_utf32.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ignore_table_update.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_log.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_UUID.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_idx_min.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_basic_2myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mts_execute_partial_trx_with_auto_pos_on.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_extra_col_master_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_master_connection.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_partition_archive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ssl.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_incident.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_udf.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_many_optimize.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_extra_col_slave_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_session_var.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_tbl_metadata.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_change_master_crash_safe.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_function_defaults.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_blob_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_lost_events_on_rotate.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_user_variables.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_insert_on_update.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_mode.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_show_master_info_file.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_hash_scan.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_no_op.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_purged_fail_to_connect.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_loadfile.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ssl1.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_binary_log_as_relay_log.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_manual_change_index_file.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sql_thread_killed_waiting_commit_lock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddata_map.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_partition_memory.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_slave_load_remove_tmpfile.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_trig003.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mysql_upgrade.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_001.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_trig004.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sp_privileges.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_server_id2.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_multi_query.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_grant.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_multi_engine.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_current_user.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_4threads_deadlock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_create_drop_temp_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_relay_ign_space.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_4_bytes.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_non_direct_mixed_mixing_engines.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_trunc_temp.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_rotate_gtid.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_reset_slave.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_idempotency.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_func003.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_user.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_func001.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_slow_query_log.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mixed_ddl_dml.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_charset_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_critical_errors.result.txt
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_unknown_ignorable_event.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_USER.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_sanity.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_rotate_logs.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ignore_table_filter_insensitive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_find_row.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_relayspace.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_replicate_do.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_mts_relay_log_recovery_auto_pos_on_off.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_blob_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_stm_insert_delayed.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mix_insert_delayed.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_relay_space_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_nondeterministic_functions.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_load_data.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_create_select.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_purged_maintained.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp003.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ignore_db_filter.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_sql_mode.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_cross_version.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_corrupt.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_drop_create_temp_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_do_grant.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_binlog_errors.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp005.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_flsh_tbls.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sp_effects.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_init_slave.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_utf16.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_000001.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_check_gtid.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_execution.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mixed_row_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_binlog_grant.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_conf_limits.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_drop_view.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_show_slave_hosts.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_corruption.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_checksum.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ignore_revoke.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mixed_bit_pk.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_flush_logs.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_create_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_log_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_insert_id.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ipv6.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_blobs.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_connection.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_found_rows.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_create_database.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp008.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_basic_allow_batching.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_mix_show_relaylog_events.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_000011.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_skip_incident.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_validate_slave_gtids.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_seconds_behind_master.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_000017.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_apply_binlog_with_gtid_when_gtid_mode_off.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_show_binlog_events_purge_logs.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_view_multi.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_auto_increment_bug33029.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_variables.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_seconds_behind_master.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mts_stop_slave.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_typeconv.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ip_mix2.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_bit_npk.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_migration_crash_safe.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sp004.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_create_if_not_exists.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_do_db_filter.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_show_slave_running.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_sql_until_before_after.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_bit.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_change_master_dbug.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_not_null_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_checksum_undef.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp006_InnoDB.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_non_direct_row_mixing_engines.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_do_table_filter_sensitive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_bug37426.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_grant_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_variables_stm.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_err_ignoredtable.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mixed_drop_create_temp_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_read_only.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_ddl.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_eng_min.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_deadlock_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_skip_error.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_insert.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_locale.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_binlog_max_cache_size.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp012.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtids_restart_slave_io_lost_trx.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_filter_tables_not_exist.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_dual_pos_advance.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_delayed_ins.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_misc_functions.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_flsh_tbls.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_colSize.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_avoid_temporal_upgrade.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_set_null_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_binlog_gcommit_options.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mysqlbinlog_gtid_on.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_name_const.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_trunc_temp.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_drop.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_hash_scan_sanity.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_rewrt_db.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_ignore_table_filter_sensitive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_charset.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_err_ignoredtable.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_implicit_commit_binlog.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_free_items.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_merge_engine.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_heartbeat_2slaves.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loadfile.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddata_s.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_conditional_comments.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_bug41902.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_replay_relaylog.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_report_port.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_truncate_3innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_temp_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_innodb_bug28430.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_concurrency_error.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_temp_query.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_view.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl000001.a.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_semi_sync_event.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_temporary.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_loaddata_m.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_trigger.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_non_direct_stm_mixing_engines.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddata_m.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_loaddata_concurrent.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_mixed_mts_crash_safe.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_event_max_size.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ps.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_drop_create_temp_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_drop_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_EE_err.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_stm_mix_show_relaylog_events.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_eng_full.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_failed_optimize.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_reset_slave.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_log.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_get_lock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ip_mix.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_lcase_tblnames.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_bug38694.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_packet.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_DML_error.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_delayed_slave.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stop_slave.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_special_charset.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddata_fatal.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_mysqlbinlog.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_alter_repository.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_rec_comp_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_drop_db.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_set_charset.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_crash_safe_master.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_filter_database.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_truncate_2myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_idx_noblob.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_events.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_timestamp_upgrage_55.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_multi_update2.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_empty_transaction.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddata_simple.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_show_errors.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp009.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp011.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_do_table_filter_insensitive.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_server_sighup.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_alter.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_multi_update4.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_loaddata_charset.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_set_null_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_sync.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_loaddata_s.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_rbr_to_sbr.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_misc.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_basic_11bugs.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_plugin_load.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mix_found_rows.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_semi_sync_deadlock.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_delete_no_where.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_server_id_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_stm_binlog_max_cache_size.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mixed_binlog_max_cache_size.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ipv4_as_ipv6.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_tabledefs_3innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_slave_skip.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_lcase_tblnames.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_semi_sync.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_gtid_parallel.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_extra_row_data.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_low_slave_net_time_out.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_slave_grp_exec.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_mts_slave_hang_with_partial_trx.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_killed_ddl.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_img_eng_noblob.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_heartbeat_ssl.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_trig001.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_row_sp002_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_binlog_index.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_ignore_table.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_innodb_bug30888.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_multi_delete.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_conflicts.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_bug31076.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_parallel_worker_error.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/r/rpl_semi_sync_shutdown_hang.result
-- Installing: /mysql/software/mysql-test/./suite/rpl/rpl_1slave_base.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_grant_plugin-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_heartbeat-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_id_ignore-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_off-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_multi_db.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_log_pos.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_tbl_metadata.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_crash_safe_master.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_revoke-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_temporal_fractional.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table_filter_insensitive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_relay_ign_space.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mysql_upgrade.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ip_mix-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_master_connection-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_reset_slave.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_concurrency_error.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ipv4_as_ipv6.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_flushlog_loop-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_grant.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_grp_exec.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_id2.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_crash_safe-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sync.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_event-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_max_relay_size.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_deadlock-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_future_logpos-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_binlog_max_cache_size.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_invoked_features.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sync-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mysqlbinlog_gtid_on.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_savepoint.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sequential.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug41902-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rewrite_db_filter-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_free_items-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_crash_safe-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_ignore_table_filter_sensitive-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_table_filter_sensitive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_table_filter_insensitive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_corruption.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_user_variables.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_name_const.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_check_gtid.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_simple.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_temp_table_mix_row.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_init_slave_errors.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sql_thread_killed_waiting_commit_lock-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sbm_previous_gtid_event-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_replicate_rewrite_db.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_implicit_commit_binlog-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_partition_memory.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_temp_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bit_npk.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_eng_min.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_blackhole.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_basic_allow_batching.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_conf_limits.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_killed_ddl.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_find_row.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_report_port.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_show_relaylog_events.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_colSize.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_relayspace.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_bit_pk.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_partition_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_set_null_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_implicit_commit_binlog.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_binlog_errors.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_basic_2myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_ignore_table_filter_insensitive-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_mts_rec_crash_safe-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_temp_query.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_ignorable_event-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_incident.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ip_mix2.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_temp_query-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_reset_slave.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_checksum.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_extra_row_data-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_truncate_3innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_user.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_empty_transaction.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_not_null_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_extra_col_slave_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_ignore_table_filter_sensitive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_stop_middle_group.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_load_in.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_DML_error.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_implicit_commit_binlog-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_spec_variables.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_000010.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_create_tmp_table_if_not_exists.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_eng_noblob.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_slave_err_warnings-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_grant-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_cross_version-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_shutdown_hang-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slow_query_log.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ipv4_as_ipv6.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_lcase_tblnames_rewrite_db-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_tmp_table_and_DDL.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_eng_full.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_insert_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_plugin_load-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_row_show_relaylog_events.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table_filter_insensitive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_colSize.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_log-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_locale.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_many_optimize.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_replay_relaylog.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sp004.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_checksum-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mix_mts_show_relaylog_events.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_show_slave_running.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_insert_id_pk.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_mts_crash_safe-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_implicit_commit_binlog-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_failover.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_flsh_tbls.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_manual_change_index_file.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_id_ignore-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sporadic_master.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp011-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_apply_binlog_with_gtid_when_gtid_mode_off.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_uninstall_plugin.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_table_filter_insensitive-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_charset.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_flushlog_loop.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sp-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_drop_temp_gtid.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp007_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_auto_increment_update_failure.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_switch_stm_row_mixed-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_innodb_bug28430.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_current_user-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_empty_master_host.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_recovery_replicate_same_server_id.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_update4-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_idx_full.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ddl.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ipv6.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_id_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_log.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug37426.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_conditional_comments.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_timezone-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_symlink-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_crash_safe.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_row_event_max_size-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_binlog_max_cache_size.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_read_only.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_db_filter-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_insert_id-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_func003.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mix_insert_delayed.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_auto_increment_11932.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_binlog_corruption.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_failover.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_EE_err2.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_trig001.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_trunc_temp.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_udf-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_lcase_tblnames.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug38694.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_init_slave-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_record_find_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_do_table_filter_insensitive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_heartbeat_2slave.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_trig003.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_extra_row_data.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_typeconv_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sp_effects.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_innodb_mixed_ddl.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rewrite_db_filter.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_create_database-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_relayrotate-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_get_master_version_and_clock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table_filter_sensitive-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_relay_ign_space-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_lcase_tblnames_rewrite_db.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_ddl_errors_cli.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_create_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table_filter_sensitive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_timestamp_upgrage_55.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_delayed_ins.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_revoke.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_debug-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_set_charset.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rewrt_db.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_recovery_empty_sqlthd_pos.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_charset_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sp_privileges.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_binlog_gcommit_options-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_table_filter_sensitive-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_udf.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_tabledefs_2myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_loaddata_s.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_change_master_dbug.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rotate_logs.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp005.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_ignore_table_filter_insensitive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_empty_transaction.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_unknown_ignorable_event.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_seconds_behind_master-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_lost_events_on_rotate.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_get_lock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_ignorable_event.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_ignorable_event-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_corruption-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_recovery_empty_sqlthd_pos-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_drop_table.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_apply_binlog_with_anonymous_gtid.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_create_select.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_truncate_2myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_flush_logs.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_loaddata_concurrent.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_grant_plugin.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_db_filter.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_load_data-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_slave_err_warnings.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_extra_col_slave_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_non_direct_stm_mixing_engines.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sync-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_session_var.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_incident-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_extra_col_master_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_ignore_table_filter_insensitive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_special_charset.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_misc_functions-slave.sh
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_log-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_table_filter_sensitive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_basic_11bugs.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_loadfile.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slow_query_log-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_shutdown_hang.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_report.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sequential-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp008.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_drop_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_basic_11bugs-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_multi_db-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_delete-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_binlog_errors.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_rec_comp_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ipv6.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_update3.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_uninstall_plugin-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_seconds_behind_master.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_implicit_commit_binlog-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_stop_slave.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table_update-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_do_table_filter_sensitive-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_view_multi.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_event-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_binary_log_as_relay_log.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_001.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_conflicts.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_special_charset-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_stm_insert_delayed.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_non_group_commit_deadlock-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_plugin_load.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_load_remove_tmpfile.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_deadlock-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_filter_database-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_implicit_commit_binlog.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_innodb_mixed_dml.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_group_commit_deadlock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_commit_after_flush.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_known_bugs_detection-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_corruption-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_binlog_index.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_stress_failover.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_slave_hang_with_partial_trx-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_shutdown_hang-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ip_mix2.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_id2-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_idx_min.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_idx_full.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_hash_scan_sanity.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_map.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_change_master-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_connection.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sp-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rotate_purge_deadlock-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_utf16.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_no_op.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_debug.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_inexist_tbl.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sp_effects-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_replicate_event_after_sync_stage.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table_filter_sensitive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_typeconv-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_mode.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_basic_3innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_loaddata_s-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_do_table_filter_sensitive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_alter_db.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_relay_space_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_sql_mode.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_concurrency_error-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_group_commit_deadlock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_err_ignoredtable.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_until.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_map-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_load_tmpdir_not_exist.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_future_logpos-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_packet-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_log.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_crash_safe.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_group_commit_deadlock-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_skip.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_ddl-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_func002.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_partition_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_user_variables.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_mts_rec_crash_safe.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_master_connection.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_report-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_id1.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_parallel.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_innodb_bug28430-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_begin_commit_rollback-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_on-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_nondeterministic_functions.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_innodb_bug28430-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_USER.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_implicit_commit_binlog-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_load_tmpdir_not_exist-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_drop_temp-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_EE_err.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_timezone-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp006_InnoDB.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp002_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ssl1.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ip_mix.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_err_daisychain-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ssl.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_grant_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_show_master_info_file-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_extra_col_master_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_low_slave_net_time_out.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_switch_stm_row_mixed.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_insert_id-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_group_commit_deadlock-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_replicate_do-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_apply_binlog_with_anonymous_gtid_when_gtid_mode_on.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_drop.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_purged_fail_to_connect-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_current_user.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mix_found_rows-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table_update.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_row_event_max_size-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_validate_slave_gtids.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_foreign_key_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_udf-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_delete.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_filter_tables_not_exist-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_update2.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug33931.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_UUID.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_switch_sequential.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_auto_increment_bug45679.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_heartbeat_basic.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddatalocal.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_optimize.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_kill_query.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_000011.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_idx_min.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_event_max_size-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_engine.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_extra_row_data-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_deadlock_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_change_master_crash_safe.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_avoid_temporal_upgrade.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_log_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_mts_crash_safe.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_s-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_change_master_crash_safe-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ps.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_heartbeat_ssl.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_drop_temp.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_load_tmpdir_not_exist-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_drop_db.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_master_connection-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp010.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_uninstall_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_idempotency.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_event_max_size.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_not_null_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_conf_limits-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_multi_query.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_drop.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_uuid.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_charset.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_plugin_load-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_small.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_start_stop-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_alter_repository.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp012.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_filter_tables_not_exist.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_show_slave_status_deadlock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_show_errors.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_grant.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_partition_archive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sp_effects-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_special_charset-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_events.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_corruption.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_auto_increment-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_replicate_do.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_begin_commit_rollback-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_symlink-slave.sh
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_purged_fail_to_connect-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rbr_to_sbr.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_stop_slave-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_flushlog_loop-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mix_found_rows.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_relayspace-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_symlink-master.sh
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bit.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_000001.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_update2-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_spec_variables-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_stress_failover.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_typeconv-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_binlog_max_cache_size.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_create_drop_temp_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_deadlock_innodb-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_binlog_gcommit_options.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_error.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_timezone.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_worker_error.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_do_table_filter_sensitive.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_migration_crash_safe.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_show_slave_hosts.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_row_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_alter.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_sql_until_before_after.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_killed_ddl-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_log_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_init_slave.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_ddl_dml.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_event_max_size-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp003.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_idx_noblob.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_map-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_typeconv.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_eng_full.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_LD_INFILE.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rewrite_db_filter-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_sanity.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_eng_noblob.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_free_items.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_drop_view.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_err_daisychain-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_circular_for_4_hosts-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_replicate_ignore_db-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_execution-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp011.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_show_binlog_events_purge_logs.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_drop_create_temp_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_id2-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_db_filter-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_non_direct_row_mixing_engines.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_hash_scan.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rotate_logs.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_begin_commit_rollback.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_implicit_commit_binlog-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_4threads_deadlock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_on.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_binlog_errors-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_m-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_max_relay_size.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rotate_purge_deadlock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_non_group_commit_deadlock-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_blob_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_flsh_tbls.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_crash_safe.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_heartbeat_basic.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_heartbeat.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_err_ignoredtable-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_slave_hang_with_partial_trx.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_mode_on_new_master.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_conflicts.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_test_framework.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_until.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_flush_logs-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_corrupt.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rotate_gtid.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_report_port-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_dual_pos_advance.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_table_filter_insensitive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_mysqlbinlog.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_until_pos_middle_gtid.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_unsafe_funcs.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_delete_no_where.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug26395.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_filter_database.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_do_table_filter_insensitive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_update.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_log-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_log-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_mts_relay_log_recovery_auto_pos_on_off-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_geometry.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_change_master.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_gtids_restart_slave_io_lost_trx.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_mode_off_new_master.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_set_null_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rewrt_db-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_merge_engine.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_innodb-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_conflicts-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_symlink-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_relayrotate.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_temporary.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_eng_min.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_error-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_update4.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_create_database-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_delayed_slave.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_4_bytes.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_critical_errors.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_stm_mix_show_relaylog_events.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_incident.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_corruption-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_trunc_temp.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_event.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_kill_query-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_do_table_filter_insensitive-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_utf32.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_binlog_errors-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_insert_on_update.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_basic_8partition.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_filter_warnings-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_start.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_show_slave_hosts.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sbm_previous_gtid_event.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_corrupt-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_mixing_engines.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_func001.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_temporary_errors.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_show_master_info_file.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_drop_create_temp_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_insert_delayed.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_heartbeat_2slaves.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_insert.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_misc_functions.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_insert_id.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_tabledefs_3innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_load_data.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_mts_show_relaylog_events.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_execution.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sp.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_db_filter.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_delete2.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_create_if_not_exists.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_change_master.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_misc.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp001.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_4_bytes-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_variables.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_grant.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_recovery_replicate_same_server_id-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ignore_table_filter_insensitive-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_seconds_behind_master.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_blob_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_drop_db_fail.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_function_defaults.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_multi_db-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_insert_delayed.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_s.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ip_mix2-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_m.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_lcase_tblnames-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_known_bugs_detection.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sequential-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_incident-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_multi_delete2-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug41902.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_dual_pos_advance-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_replicate_ignore_db.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_current_user.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_lcase_tblnames.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_cross_version.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_blobs.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_small-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_get_master_version_and_clock-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_packet.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stop_slave.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_crash_safe-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_gtids_restart_slave_io_lost_trx-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_found_rows.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_start_stop_slave.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_binlog_grant.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_checksum_cache.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_circular_for_4_hosts.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_temporary_errors-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_server_sighup.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_deadlock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_view.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_test_framework.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_ignore_table_filter_sensitive-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_server_uuid.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_000013.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_wide_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_auto_increment.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_relay_space_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_slave_status.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_fatal-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_view01.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loadfile.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_trig002.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_purged_fail_to_connect.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_blobs.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_partition_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_general_log.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug33931-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_do_db_filter-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixing_engines.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_future_logpos.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_mysqlbinlog-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_corrupt-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_skip_ddl_errors_cli-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_purged_maintained.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_conflicts.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_NOW.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_sp009.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_000010-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_auto_increment_bug33029.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtids_restart_slave_io_lost_trx.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_ddl.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_mts_relay_log_recovery_auto_pos_on_off-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_checksum_undef.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_auto_increment_bug33029.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_variables_stm.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_mix_show_relaylog_events.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_packet-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_implicit_commit_binlog.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_mts_relay_log_recovery_auto_pos_on_off.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_trigger.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_filter_warnings.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_heartbeat_2slave.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_heartbeat_2slaves.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_loaddata_concurrent.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sql_thread_killed_waiting_commit_lock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_ip_mix.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_circular_for_4_hosts.cnf
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_incident-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_img_idx_noblob.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_innodb_bug30888.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mixed_mixing_engines.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_invoked_features-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_stm_drop_create_temp_table.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_sporadic_master-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_read_old_relay_log_info.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_fatal.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_master_pos_wait.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_non_direct_mixed_mixing_engines.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_000017.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_rotate_row_trans.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug31076.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_switch_sequential-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_loaddata_symlink.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_failed_optimize.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_off.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_row_event_max_size.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_trig004.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_row_rec_comp_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_idempotency.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_parallel_start_stop.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_create_database.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_bug38694-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_gtid_execution-master.opt
-- Installing: /mysql/software/mysql-test/./suite/rpl/t/rpl_semi_sync_non_group_commit_deadlock.test
-- Installing: /mysql/software/mysql-test/./suite/rpl/include
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_check_event.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_check_select.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_clear_tables.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_partition.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_check_db.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_dml.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_show_binlog_format.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_check_view.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_check_user.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_check_table.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/include/rpl_mixed_ddl.inc
-- Installing: /mysql/software/mysql-test/./suite/rpl/my.cnf
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/stress_init.txt
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/README
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/stress_tests.txt
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/r
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/r/read.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/r/modify.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/r/work.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/t
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/t/setup.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/t/modify.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/t/work.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/t/read.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/include
-- Installing: /mysql/software/mysql-test/./suite/perfschema_stress/include/settings.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/mysql_old_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/server_withssl_client_withssl.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/mysql_native_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/server_withssl_client_withoutssl.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/have_ssl.require
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/not_openssl.require
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/server_withoutssl_client_withoutssl.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/mysql_old_passwords.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/access_credential_control.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/password_expired.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/server_withoutssl_client_withssl.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/mysql_no_login.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/key_value_auth.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/not_ssl.require
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/not_embedded.require
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/mysql_sha256_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/have_mysql_upgrade.result
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/r/openssl.require
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/server_withoutssl_client_withssl.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/server_withoutssl_client_withoutssl.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/server_withssl_client_withssl.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/key_value_auth-master.opt
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/server_withssl_client_withoutssl-master.opt
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_sha256_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_old_plugin.test_old
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/password_expired-master.opt
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_no_login.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/access_credential_control.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_old_plugin.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_old_passwords-master.opt
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/key_value_auth.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_no_login-master.opt
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_old_passwords.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/access_credential_control-master.opt
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/server_withssl_client_withssl-master.opt
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_sha256_plugin.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/server_withssl_client_withoutssl.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/password_expired.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/key_value_auth.test_old
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/t/mysql_native_plugin.test
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/have_ssl_communication.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/have_openssl.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/have_sha256_rsa_auth.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/not_openssl.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/not_embedded.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/have_ssl.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/not_sha256_rsa_auth.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/not_ssl.inc
-- Installing: /mysql/software/mysql-test/./suite/auth_sec/include/mysql_upgrade_preparation.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb
-- Installing: /mysql/software/mysql-test/./suite/innodb/r
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_table_flag_sample_pages.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_fetch.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug30919.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_auto_recalc.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug42419.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/dropdb.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-bug-14068765.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/sp_temp_table.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_i_s_innodb_locks.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_table_flag_auto_recalc.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug11754376.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_auto_recalc_ddl.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-change-buffer-recovery.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_i_s_innodb_trx.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-multiple-tablespaces.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug47621.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-autoinc-18274.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/blob_redo.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug47777.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_information_schema_buffer.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_upd_stats_if_needed_not_inited.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl5980-linux.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug53674.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-index_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug14704286.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_fetch_corrupted.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug42101.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug14147491.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_multi_update.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl6445.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug56947.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl5522.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/strict_checksum.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug52663.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/foreign_key.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/checksum.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-autoinc-56228.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug40565.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_timeout_rollback.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_blob_unrecoverable_crash.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_rename_table.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug44571.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_auto_recalc_lots.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-log-file-size-1.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-status-output.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-2byte-collation.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-semi-consistent.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug21704.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-bug-14084530.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-update-insert.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_replace.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug38231.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug47167.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_gis.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug53756.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_flag_global_off.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug59641.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug14007649.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-alter-autoinc.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-autoinc-optimize.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/import.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug34300.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-lock.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug13635833.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-use-sys-malloc.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-blob.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-alter-debug.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug51920.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug14007109.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-log-file-size.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug60049.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug59307.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_external_pages.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug70867.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug41904.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug13867871.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug14006907.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_auto_recalc_on_nonexistent.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug39438.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_ctype_ldml.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-autoinc.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/index_tree_operation.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl5522-debug.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-double-write.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug46676.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug44032.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug53290.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-index-online-fk.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_autoinc_lock_mode_zero.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-index-online.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_misc1.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_page_size_func.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug12429573.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl5522-1.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-tablespace.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-analyze.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug40360.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_trx_weight.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug57904.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug11766634.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug44369.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug60196.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_sample_pages.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-index-online-purge.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_drop_locked.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/monitor_debug.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug48024.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_mysql_rbk.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug-13628249.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/add_foreign_key.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/xa_recovery.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl5980-debug.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl5980-windows.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-index-online-delete.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug45357.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug53592.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_corrupt_bit.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-alter-discard.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_rename_table_if_exists.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug47622.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug54044.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug11789106.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug53046.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-alter.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug56143.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-alter-tempfile.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_notembedded.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug56716.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug46000.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug12661768.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_create_on_corrupted.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug60229.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-index-debug.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl6445-2.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug57252.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug35220.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-autoinc-44030.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl5980-alter.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl6445-1.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/insert_debug.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_file_format.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_mysql.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-index.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug59733.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug49164.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_fetch_nonexistent.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/strict_mode.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-table-online.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-consistent.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-truncate.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_buffer_pool_load.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug34053.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_prefix_index_restart_server.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_flag_global_on.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-timeout.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug11933790.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-system-table-view.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/create-index.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug42101-nonzero.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-bug12552164.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_stats_create_table.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_ut_format_name.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-bug14219515.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug14169459.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug51378.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug12400341.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-replace.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-read-view.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug14676111.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug59410.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-alter-nullable.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug52199.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/blob-update-debug.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug57255.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_lock_wait_timeout_1.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb_bug30423.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-wl5980-discard.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/innodb-ac-non-locking-select.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/r/monitor.result
-- Installing: /mysql/software/mysql-test/./suite/innodb/t
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_blob_unrecoverable_crash.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_drop_locked.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_information_schema_buffer.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug41904.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_timeout_rollback.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug12661768.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug40565.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug11766634.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_misc1.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_auto_recalc.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_auto_recalc_ddl.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/strict_mode.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug14147491-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/xa_recovery.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_ctype_ldml-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_lock_wait_timeout_1.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/monitor.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_misc1-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug52199.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-index-online-fk.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-truncate.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug47622.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-bug-14068765.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug48024.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_buffer_pool_load.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl5522.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-bug14219515.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug34053.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug14704286.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-index_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_notembedded.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug13635833.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug44032.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug51920.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug70867.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-bug12552164.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-alter-nullable.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug47167-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug56947.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug42101.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl5980-discard.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug56143.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_i_s_innodb_trx.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug60196-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_mysql-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl5522-1.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug54044.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_table_flag_sample_pages.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_timeout_rollback-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_buffer_pool_load-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_fetch.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug53290.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/checksum.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-timeout.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_upd_stats_if_needed_not_inited.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_rename_table.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug14006907.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-2byte-collation.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-alter-debug.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-alter.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/portability_wl5980_linux.zip
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug42419.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug47167.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_auto_recalc_on_nonexistent.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug60049.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_flag_global_off-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_external_pages.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_auto_recalc_lots.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug45357.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug59410.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-use-sys-malloc.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug42101-nonzero.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-system-table-view.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-index.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_fetch_nonexistent.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug14147491.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug40360.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_sample_pages.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug14007109.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug53674-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/add_foreign_key.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug52663.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-autoinc-44030.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug59641.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug53756-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-analyze.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug53592.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl5980-windows.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug44369.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_flag_global_off.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-autoinc-18274.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-consistent.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-index-debug.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-index-online-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug14007649.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug38231.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-bug-14084530.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug39438-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-table-online-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug46676.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug53674.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/insert_debug.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/index_tree_operation.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl5980-linux.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-index-online-delete.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug30919.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_gis.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_lock_wait_timeout_1-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl5522-debug.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_mysql_rbk.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_file_format.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug21704.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_prefix_index_restart_server.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug12400341-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_page_size_func.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_create_table.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-index-online-purge.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-alter-autoinc.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_create_on_corrupted.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-autoinc.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-table-online.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-autoinc-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-index-online.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug59307.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl5980-debug.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug12400341.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug46000.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug47621.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug53046.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-status-output.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl6445-2.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/dropdb.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-alter-tempfile.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_autoinc_lock_mode_zero.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/blob-update-debug.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug39438.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug60229-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug60196.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/blob_redo-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug11754376.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-log-file-size.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug14169459.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-lock.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-replace.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug12429573.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug57904.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug14676111.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-semi-consistent.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug35220.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_ut_format_name.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/strict_checksum.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/create-index.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug60229.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug60049-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-double-write.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug44571.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_mysql_rbk-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_mysql.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug59733.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug51378.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-blob.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug53756.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-log-file-size-1.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-autoinc-optimize.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-autoinc-44030-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_replace.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/foreign_key.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug30423.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_flag_global_on.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-alter-discard.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-change-buffer-recovery-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_trx_weight.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug57252.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug11766634-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_flag_global_on-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_i_s_innodb_locks.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug11789106.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug56716.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug-13628249.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_table_flag_auto_recalc.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/portability_wl5980_windows.zip
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-2byte-collation-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl6445-1.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug11933790.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-tablespace.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-multiple-tablespaces.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl5980-alter.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug49164.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-use-sys-malloc-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_multi_update.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-wl6445.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/import.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_file_format-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug57255.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug30919-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-autoinc-56228.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-autoinc-56228-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug47777.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-semi-consistent-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_ctype_ldml.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-change-buffer-recovery.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug34300.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-consistent-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_corrupt_bit.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/sp_temp_table.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug42101-nonzero-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-read-view.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_autoinc_lock_mode_zero-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_rename_table_if_exists.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-update-insert.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_bug13867871.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb_stats_fetch_corrupted.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/monitor_debug.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/innodb-ac-non-locking-select.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/t/blob_redo.test
-- Installing: /mysql/software/mysql-test/./suite/innodb/include
-- Installing: /mysql/software/mysql-test/./suite/innodb/include/innodb_stats.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb/include/import.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb/include/innodb_stats_table_flag.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb/include/innodb_dict.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb/include/checksum_not_strict.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb/include/innodb_stats_table_flag_analyze.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_rep_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_conflict_max.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_check_for_mixed.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_innodb_trans.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_2ndb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_mix_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_dd_partitions.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_idempotent.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_2innodb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_ndbapi_multi.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_circular_2ch.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_myisam2ndb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_conflict.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_slave_lsu_anyval.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_mix_eng_trans.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_multi.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_auto_inc.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_bug22045.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_bank.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_dd_basic.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/rpl_truncate_7ndb_2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_conflict_epoch.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_blob.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_gap_event.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/rpl_truncate_7ndb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_slave_lsu.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_do_db.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_load.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_do_table.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_add_column.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_break_3_chain.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_logging.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_dd_advance.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_sync.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_ui2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_basic.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_conflict_max_delete_win.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_circular_2ch_rep_status.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_ignore_db.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_ui3.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_stm_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_rep_error.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_slave_restart.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_ui.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_mixed_tables.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_binlog_format_errors.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_bitfield.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_circular.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_conflict_old.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_empty_epoch.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_2myisam.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_innodb2ndb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_ctype_ucs2_def.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_init_rep_status.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_2other.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_apply_status.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_skip_gap_event.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/r/ndb_rpl_circular_simplex.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/ndb_master-slave.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/ndb_master-slave_2ch_end.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_conflict_info_init.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_max-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_max_delete_win.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_myisam2ndb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_innodb_trans-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_epoch_1.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_apply_status.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_mixed_tables.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_mixed_tables-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_ui3.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2ndb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_circular_2ch_rep_status.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_multi.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_sync.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_ignore_db-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_get_binlog_events.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_ui.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_relayrotate-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_multi_update2-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_break_3_chain.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_circular_2ch.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_empty_epoch.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_dd_partitions.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_ctype_ucs2_def-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2ndb-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_skip_gap_event.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_mix_eng_trans-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_binlog_format_errors-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_auto_inc.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_logging.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_gap_event-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_max.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_innodb2ndb-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_circular.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_circular_simplex.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_myisam2ndb-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_load.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_rep_ignore-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_max_delete_win-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_binlog_format_errors.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_check_for_mixed.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_ui2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_old-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2multi_eng.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_skip_gap_event-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_innodb2ndb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_slave_lsu.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_circular_2ch_rep_status.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_binlog_format_errors-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/select_ndb_apply_status.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_ctype_ucs2_def.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_rep_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2other.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_break_3_chain.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2multi_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_bank.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2myisam.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_multi_binlog_update.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_epoch.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_xxx_innodb.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_dd_basic.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_conflict_info.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_do_db-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_basic.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_apply_status.frm
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_apply_status-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_do_table-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_ignore_db.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_ndbapi_multi.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_slave_lsu.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_idempotent.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_dd_partitions-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_epoch.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_slave_lsu_anyval.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/rpl_truncate_7ndb_2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/wait_schema_logging.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_old.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_dd_partitions-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2innodb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_rep_error.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2other-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2myisam-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_stm_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_slave_restart.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_bug22045.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_stm_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_multi_binlog_update.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_dd_advance.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_add_column.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_slave_lsu_anyval.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_mix_eng_trans-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/rpl_truncate_7ndb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_bitfield.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_init_rep_status.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_circular_2ch.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_do_table.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_blob.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_mix_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_mixed_tables-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_conflict_1.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_innodb2ndb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_do_db.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_innodb_trans.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_mix_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_mix_eng_trans.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_gap_event.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/t/ndb_rpl_2innodb-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/my.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_rpl/ndb_master-slave_2ch.inc
-- Installing: /mysql/software/mysql-test/./suite/engines
-- Installing: /mysql/software/mysql-test/./suite/engines/README
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/update_delete_calendar.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/strings_update_delete.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/update_delete_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/insert_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/delete_decimal.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/update_decimal.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/insert_decimal.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/strings_charsets_update_delete.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/insert_time.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/update_year.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/delete_time.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/update_time.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/insert_calendar.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/type_bit_iuds.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/delete_year.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/r/insert_year.result
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/hindi.txt
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/update_year.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/sample.txt
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/delete_time.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/update_delete_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/insert_year.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/update_decimal.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/strings_update_delete.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/insert_decimal.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/type_bit_iuds.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/insert_time.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/delete_year.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/insert_calendar.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/update_delete_calendar.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/update_time.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/insert_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/delete_decimal.test
-- Installing: /mysql/software/mysql-test/./suite/engines/iuds/t/strings_charsets_update_delete.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/init_innodb.txt
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/run_stress_tx_rr.pl
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_c_stats.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_iud_rollback-multi-50.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_u_10-19.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_i_40-44.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_u_10-19_nolimit.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/init_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_id_3.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_insert_select_2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_sc_select-same_2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_sc_select-limit-nolimit_4.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_id_900.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_replace_7-8.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_s_select-uncommitted.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_sc_sum_total.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_c_count_not_zero.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/r/rr_u_4.result
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/run.txt
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_sc_select-limit-nolimit_4.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_iud_rollback-multi-50.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_i_40-44.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_sc_select-same_2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_insert_select_2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_id_900.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_replace_7-8.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_u_10-19_nolimit.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/init_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_u_10-19.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_c_stats.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_c_count_not_zero.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_s_select-uncommitted.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_u_4.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_id_3.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/t/rr_sc_sum_total.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/include
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/include/check_for_error_rollback.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/include/rr_init.test
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/include/check_for_error_rollback_skip.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/include/check_repeatable_read_all_columns.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/include/record_query_all_columns.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/rr_trx/check_consistency.sql
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_number_pk_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_from.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_limit.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_multi_db_table_using.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_column.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/fu_aggregate_max_subquery.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_unique_index.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_straight.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_sp010.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_less_columns.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ps_number_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_unique_key.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ps_string_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_number_unique_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_NOW.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_unique_non_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_number_unique_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_create_character_set_collate.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ai_init_create_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_column_to_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_index_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl000017.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_start_stop_slave.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_index_lob.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/comment_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_reorg_divide.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tr_all_type_triggers.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_column_middle2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_unique_error3.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/jp_comment_index.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ai_init_alter_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/up_limit.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_bit.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_rename_across_database.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_max_relay_size.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sp_simple1.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_autoincrement.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_server_id1.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_sp.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_until.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_calendar_range.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_where.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_pk_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_create_drop.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_boundary_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_exists.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_column_to_index.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_structure_comment.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_empty_master_crash.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_string_drop_column.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_stm_max_relay_size.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_flushlog_loop.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_hash_date_function.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/crash_manycolumns_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_calendar_unique_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_rename_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_2part_column_to_pk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_set_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_loaddatalocal.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_truncate_autoinc.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/an_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_2part_string_to_pk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/an_calendar.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_comment_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_not_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_analyze.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_sp001.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_alter_collate_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_structure_create_like.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_length_decimals.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_drop.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_pk_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_drop_index.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ai_reset_by_truncate.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_calendar_pk_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/jp_comment_column.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_string2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/datetime_function.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_column_from_zerofill.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_natural_right.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_unique_key_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_right_outer.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_left_outer.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_change_master.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_enum_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_create_character_set.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/comment_column2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_index_non_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_column_first2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_calendar_unique_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_LD_INFILE.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/comment_column.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_2part_diff_to_pk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl000013.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_unique_decimals.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_calendar_pk_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_unique_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_user_variables.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_structure_create_select_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_string_first2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_string_middle.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sf_alter.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_insert_select_unique_violation.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_string_middle2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_string_first.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_where_or.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_string_pk_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_switch_stm_row_mixed.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_change_from_range_to_hash_key.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_REDIRECT.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_calendar_pk_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_string_unique_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_calendar_2_unique_constraints_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_replicate_ignore_db.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_multi_delete2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_string_to_not_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_log_pos.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_structure_create_like_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_number_pk_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_distinct.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_trig002.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_2part_diff_string_to_pk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_slave_status.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_ignore_grant.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_use_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_temporary_column_length.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/crash_manytables_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_autoinc.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_length.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_decimal_boundary_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_string_unique_index.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_column_first.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_view01.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_2_unique_constraints_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/fu_aggregate_sum_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_rename.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_enum_null_boundary_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_set_long.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tr_update_after_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_structure_create_select.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_inexist_tbl.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_calendar_pk_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_master_pos_wait.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/general_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_unsigned.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ai_sql_auto_is_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_3part_string_to_pk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_calendar_unique_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_create_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_corr.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl000010.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_length_zero.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_column_to_zerofill.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_alter_db.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_index_decimals.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_set.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_left.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_multicolumn_same.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_natural_right_outer.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_create_error_reserved.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/re_string_range_set.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_pk_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_string_pk_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_drop.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_string_to_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_ignore_table_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_serial.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_having.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_any.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tr_insert_old_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/time_function.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_drop_pk_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_many_optimize.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_unique_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_temporary_column.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_2_unique_constraints_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_session_var.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_column_to_not_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_set_null_boundary_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_drop_string_index.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_quote.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_create_if_not_exists.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_stm_no_op.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_string_to_index.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_reorg_merge.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_row.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_column_to_unsigned.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_simple.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_lob_boundary_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_optimize.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_starting.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_pk_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_calendar_unique_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/up_calendar_range.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_trig003.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_alter_character_set_collate.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_default_decimal.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_unique_error2_local.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_length.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_server_id2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_value_specific.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_all_number_string_calendar_types.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tr_insert.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sp_alter.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_unique_error1_local.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/comment_index.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_trunc_temp.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_unique_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_drop_column.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ps_number_length.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_reset_slave.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_zerofill.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_quick.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_orderby.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ai_init_insert_id.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_func001.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_remove.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_default.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_set_drop_default.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/up_multi_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_USER.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_alter_character_set.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_default_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_check.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/re_number_select.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_multicolumn_different.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_relayspace.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_unique_error2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_number_unique_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_insert_select.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/general_not_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/re_number_range_set.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_calendar_unique_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/re_string_range.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_pk_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/fu_aggregate_avg_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_do_grant.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_column_from_unsigned.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_reorg_hash_key.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_unique_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_list_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_sp005.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_sp_effects.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/crash_manytables_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_drop_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_init_slave.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl000011.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/fu_aggregate_min_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_some.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_limit.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/date_function.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_000015.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_not_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ai_overflow_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_ignore_revoke.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/fu_aggregate_count_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_rename.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_loaddata2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_drop_pk_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_natural_left.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_unique_error3_local.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_string_unique_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_drop_pk_autoincrement.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/jp_comment_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_string_to_pk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_create_database.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_sp008.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_drop_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_unique_error1.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_unique_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_unique_lob.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_in.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_orderby.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_enum_null_large_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_calendar_pk_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_variables.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_enum_long.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_bit_npk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_sp004.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_insert_select.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/up_multi_db_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_bit.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_column2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_comment.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_enum_set.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/up_string_range.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_unique_constraint_duplicate_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sf_cursor.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_err_ignoredtable.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_stm_mystery22.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ai_init_insert.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_skip_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_set_null_large.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_insert.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_sp012.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_string_range.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_dual_pos_advance.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_list_directory.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_misc_functions.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tr_delete_new_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_drop.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_add_column_middle.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_stop_middle.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/crash_manyindexes_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_linear_key.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_key.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_free_items.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_default_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ld_more_columns_truncated.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_loadfile.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/crash_manycolumns_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_loaddata_s.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_rowid.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_temp_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_view.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_string_unique_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_temporary.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_hash.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_trigger.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_inner.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_loaddata_m.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_groupby.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_ps.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_drop_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_stm_reset_slave.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_get_lock.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_sub2.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/crash_manyindexes_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_using_order.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/jp_comment_older_compatibility1.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sp_cursor.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_sf.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/re_number_range.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_multi_table_using.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_number_pk_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_drop_db.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_number_range.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_all.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ps_string_not_null.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_column_to_pk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_index_string_length.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tr_insert_after_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_right.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_key_length.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_multi_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sq_scalar.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_sp009.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_sp011.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_insert_select_autoinc.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_natural_left_outer.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_from.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/an_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_enum.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/general_no_data.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_alter.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_primary_key_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_multi_update4.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_key.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_rbr_to_sbr.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tr_update.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_join_cross.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_multi_db_table.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_sub1.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/fu_aggregate_max_number.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_number_unique_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_rebuild.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_value.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_structure_string_comment.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_where_and.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_pk_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/db_alter_collate_ascii.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ta_3part_column_to_pk.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tr_delete.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_boundary_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_value_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_string_set_enum_fail.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_string_pk_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_multicolumn_same_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/de_truncate.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_row_trig001.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_calendar_pk_constraint_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_column_primary_key_string.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/up_nullcheck.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/ix_unique_string_length.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/sf_simple1.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/up_number_range.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/rpl_multi_delete.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/tc_partition_repair.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/se_string_union.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/up_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/r/in_multicolumn_calendar_unique_constraint_error.result
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/up_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_2part_column_to_pk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_log_pos.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_unique_error3.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_number_pk_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_ignore_revoke-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_optimize.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/crash_manycolumns_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_stm_reset_slave.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_row.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tr_update_after_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/crash_manytables_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_enum_set.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_temporary_column.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_do_grant.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sf_cursor.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_string_unique_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_server_id2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_stm_max_relay_size.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/time_function.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_column_first.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_starting.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_insert_select_unique_violation.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_remove.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_analyze.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_primary_key_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_any.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_string_to_index.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_free_items-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/wait_show_pattern.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_user_variables.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_key.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/comment_column.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ai_init_insert.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_natural_left.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_temp_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_bit_npk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_length_zero.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_index_decimals.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_orderby.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_relayspace.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_unsigned.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_column_first2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_starting.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/crash_manytables_string.cnf
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_reset_slave.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_column_to_not_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_column_from_zerofill.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_from.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_view-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_pk_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_empty_master_crash-master.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_unique_string_length.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_right_outer.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_drop_string_index.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_ignore_grant-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_unique_error1_local.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_column2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_set_null_large.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_sf.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_many_optimize.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_sp004.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_2_unique_constraints_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_string_unique_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_decimal_boundary_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_structure_create_select_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tr_all_type_triggers.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_having.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_flushlog_loop.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_sp-master.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ai_sql_auto_is_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/jp_comment_older_compatibility1.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_rename_across_database.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_sub2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/crash_manycolumns_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_number_unique_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_where_and.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/fu_aggregate_avg_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_multi_update4-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_rename.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_using_order.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_hash.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_default.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/re_number_select.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tr_insert_old_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_structure_create_like.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sf_alter.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_from.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_trig001.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_trunc_temp.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_zerofill.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_some.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_init_slave-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/jp_comment_index.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_trig003.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_sp_effects.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_empty_master_crash.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_create_database-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_calendar_pk_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_string_middle.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/fu_aggregate_sum_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_length.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ai_init_alter_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_multi_db_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_change_from_range_to_hash_key.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_string_to_pk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_column_to_unsigned.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_ignore_revoke.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_left.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_string_pk_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_unique_error1.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_set_null_boundary_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_sp005.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_get_lock.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_primary_key_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_pk_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_string_middle2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_hash_date_function.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_unique_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_enum_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_drop_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ai_init_insert_id.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_calendar_unique_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_unique_error2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_unique_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_index_non_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_calendar_unique_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_unique_lob.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_session_var.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_comment.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/re_number_range_set.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_linear_key.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_calendar_pk_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tr_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_sp008.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_2part_diff_string_to_pk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_multi_delete-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_pk_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/re_string_range_set.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_ignore_table_update-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_unique_key.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_unique_non_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_insert_select_autoinc.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_string_first.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ps_number_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_rowid.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_set_drop_default.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_comment_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/up_string_range.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ps_number_length.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_inexist_tbl-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_alter_character_set.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_create_character_set.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_sp-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_truncate_autoinc.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_loaddata2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_stm_no_op.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/up_number_range.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_inexist_tbl.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_sp_effects-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_insert_select.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_string_pk_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_alter_db.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_natural_right.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_string_unique_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_structure_comment.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_err_ignoredtable.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_alter_collate_ascii.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_index_lob.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_3part_column_to_pk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_server_id1.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_USER.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_column_to_index.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_reorg_merge.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/re_string_range.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/comment_index.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_unique_index.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_simple.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_switch_stm_row_mixed.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_column_to_zerofill.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_default_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_drop.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_truncate.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_ignore_table_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_drop.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_number_unique_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_stop_middle.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/an_calendar.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_multi_delete.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/up_nullcheck.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_inner.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_right.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ps_string_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_unique_error2_local.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_use_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_left_outer.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_autoincrement.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_loaddatalocal.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ai_overflow_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_lob_boundary_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tr_insert_after_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ps_string_not_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_create_drop.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_orderby.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_variables-master.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_autoinc.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/fu_aggregate_max_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_rename_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_unique_error3.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/wait_slave_status.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_number_pk_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_multi_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_pk_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_calendar_2_unique_constraints_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_default_decimal.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_unique_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_loaddata_s-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/up_multi_db_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_ps.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/up_calendar_range.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_index_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_drop_db.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_structure_create_select.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_sp010.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_unique_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_drop.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_unique_error1.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_list_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_string_to_not_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_boundary_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_calendar_pk_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_index_string_length.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_sp012.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_ignore_grant.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_multicolumn_different.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_sp_effects-master.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/datetime_function.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_distinct.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tr_delete.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_scalar.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_boundary_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_rbr_to_sbr.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_relayspace-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_bit.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_length.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tr_delete_new_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_where.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sf_simple1.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_unique_error2.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_skip_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_number_unique_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_unique_error3_local.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_key_length.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_all_number_string_calendar_types.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_enum_set.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/general_no_data.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/data1.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_alter.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_calendar_unique_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_set_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/data2.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_calendar_unique_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_init_slave.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_reorg_divide.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl000013.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_more_columns_truncated.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_less_columns.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_cross.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_straight.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_string_first2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_string_range.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_LD_INFILE.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_length_decimals.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/comment_column2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_value.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_unique_decimals.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_create_character_set_collate.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_in.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_free_items.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_stm_mystery22.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_replicate_ignore_db-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/comment_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_sp011.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_column_middle.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_server_id2-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/fu_aggregate_min_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_000015.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_unique_key_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/up_multi_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_bit.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/date_function.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_multi_table_using.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_multicolumn_same.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/general_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sp_simple1.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_list_directory.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_create_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_string_unique_index.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_loaddata_m-master.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_max_relay_size.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_structure_string_comment.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tr_insert.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_enum_null_boundary_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_string_drop_column.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_rename.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_err_ignoredtable-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_unique_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/crash_manytables_number.cnf
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_until.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_set_enum_fail.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_calendar_pk_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_repair.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_multicolumn_same_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_dual_pos_advance.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_null.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_calendar_unique_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_3part_string_to_pk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_drop_pk_autoincrement.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/crash_manyindexes_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_number_pk_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl000010.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_key.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_bit.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_temporary.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_skip_error-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_drop_pk_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_multi_update4.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_create_database-master.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_2part_diff_to_pk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_not_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_insert_select.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl000011.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_create_if_not_exists.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_create_error_reserved.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_limit.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sp_cursor.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_func001.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_default_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_insert.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_misc_functions.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sp_alter.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/an_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_multi_db_table_using.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/fu_aggregate_max_subquery.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_sp.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_multi_delete2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_null2.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_change_master.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_alter_character_set_collate.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_structure_create_like_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_sp001.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_variables.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_set_long.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_enum_null_large_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_set.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_drop_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ix_drop_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_reorg_hash_key.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_simple.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/up_limit.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl000017-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_loaddata_s.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_loaddata_m.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_multi_delete2-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_dual_pos_advance-master.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/crash_manytables_string.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_replicate_ignore_db.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_groupby.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_drop_index.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_2_unique_constraints_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_corr.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_calendar_unique_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_string_to_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_unique_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_check.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_view.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_natural_left_outer.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_union.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/an_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_calendar_pk_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_exists.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_slave_status.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_view01.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_loadfile.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_trig002.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_limit.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_calendar_range.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_serial.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_number_range.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_quote.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_pk_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_column.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_2part_string_to_pk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_column_to_pk.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_rebuild.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_unique_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_quote.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/load_more_columns.inc
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_NOW.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_row_sp009.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_sub1.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_value_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/crash_manyindexes_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/sq_all.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_enum_long.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_drop_pk_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/de_quick.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_column_middle2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/db_alter_collate_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_REDIRECT.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_multicolumn_string_pk_constraint_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/jp_comment_column.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_join_natural_right_outer.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_calendar_pk_constraint_duplicate_update.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_trigger.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_column_from_unsigned.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_add_string2.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_string_not_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl000017.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/re_number_range.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_partition_value_specific.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_column_to_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/se_string_where_or.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_start_stop_slave.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_master_pos_wait.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/fu_aggregate_count_number.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ai_reset_by_truncate.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_column_enum.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/in_number_pk_constraint_error.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ld_less_columns.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/tc_temporary_column_length.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ta_drop_column.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/general_not_null.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/jp_comment_table.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl_create_database.test
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/rpl000010-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/engines/funcs/t/ai_init_create_table.test
-- Installing: /mysql/software/mysql-test/./suite/ndb
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_le
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_le/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_le/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_le/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_le/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_le/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_le/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-2-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-2.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-2.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-2-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-2.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-2.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/50/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/before_native_default
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/before_native_default/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/before_native_default/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/before_native_default/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/before_native_default/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/before_native_default/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/before_native_default/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_dd
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_dd/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_dd/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_dd/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_dd/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_dd/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_dd/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/packed
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/packed/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/packed/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/packed/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/bug54613
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/bug54613/BACKUP-2.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_le
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_le/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_le/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_le/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_le/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_le/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_le/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_be
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_be/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_be/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_be/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_be/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_be/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_data_be/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/hashmap
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/hashmap/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_be
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_be/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_be/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_be/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_be/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_be/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_undolog_be/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_le
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_le/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_le/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_le/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_le/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_le/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_le/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_be
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_be/BACKUP-1.2.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_be/BACKUP-1.1.ctl
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_be/BACKUP-1.2.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_be/BACKUP-1-0.1.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_be/BACKUP-1-0.2.Data
-- Installing: /mysql/software/mysql-test/./suite/ndb/backups/51_d2_be/BACKUP-1.1.log
-- Installing: /mysql/software/mysql-test/./suite/ndb/ndb_config_threadconfig.ini
-- Installing: /mysql/software/mysql-test/./suite/ndb/bug56185.ini
-- Installing: /mysql/software/mysql-test/./suite/ndb/ndb_config_mycnf1.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/r
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_row_count.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_schema_partitions.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_config.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_share.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_alter_table2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_schema_blobs.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ps_7ndb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_schema_rewrites.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_global_schema_lock.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_alter_table_online.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dd_ddl.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_replace.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_auto_increment.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_database.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_join_pushdown.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_minmax.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_blob_big.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_cache.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_partition_range.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dist_priv.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_multi.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_alter_table.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_hidden_pk.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_charset.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_multi_row.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_global_schema_lock_error.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_short_sigs.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_partition_hash.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_tmp_table_and_DDL.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_bitfield.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_partition_key.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_config2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_discover_db.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_undolog.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_read_multi_range.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_lock.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dd_dump.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_single_user.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dd_restore_compat.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/loaddata_autocom_ndb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_autoinc.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_optimized_node_selection.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_cache2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_view.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_sql_allow_batching.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_basic.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_disconnect_ddl.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_load.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_trigger.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_loaddatalocal.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_blob.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_optimize_table.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_statistics0.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_native_default_support.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/bug36547.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_grant.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_reconnect.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_transaction.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_gis.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_add_partition.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_bug26793.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dd_bug12581213.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_discover.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_blob_partition.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_bug31477.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_bulk_delete.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_print.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_index_unique.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndbinfo_dump.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dbug_tc_select.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_select_count.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_types.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_subquery.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_create_table.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_alter_table_backup.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_truncate.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dd_alter.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_partition_error.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_update_no_read.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_limit.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_partition_list.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndbapi.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_cache_multi.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/strict_autoinc_5ndb.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_lock_table.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_schema_tolerance.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_schema_subsets.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_alter_table_error.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_partition_error2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_index_ordered.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_alter_table_online2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_sp.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_temporary.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndbinfo_cache.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_index.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dbug_lock.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_insert.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_compat_endianness.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_update.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_cache_multi2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_row_format.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dd_disk2memory.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_ddl_open_trans.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_condition_pushdown.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndbinfo.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_rename.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_bug31754.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dd_basic.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_compat_downward.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_misc.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_conv_lossy_charbinary.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_mgm.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_conv_lossy_integral.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_alter_table3.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_index_stat.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_conv_padding.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_statistics1.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_dd_sql_features.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_column_properties.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_alter_table_online_multi.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_cursor.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_restore_conv_promotion.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/r/ndb_cache_trans.result
-- Installing: /mysql/software/mysql-test/./suite/ndb/ndb_config_config.ini
-- Installing: /mysql/software/mysql-test/./suite/ndb/bug12712109.ini
-- Installing: /mysql/software/mysql-test/./suite/ndb/data
-- Installing: /mysql/software/mysql-test/./suite/ndb/data/table_data10000.dat
-- Installing: /mysql/software/mysql-test/./suite/ndb/data/table_data100000.dat
-- Installing: /mysql/software/mysql-test/./suite/ndb/t
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_charset.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_alter_table3.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_statistics.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_subquery.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_blob_big.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_statistics1.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_schema_rewrites.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_show_tables_result.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_addnode.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/test_mgmd.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_schema_subsets.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_lock.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_cursor.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/test_ndbinfo.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/have_ndb_error_insert.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_join_pushdown.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_schema_blobs.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_discover_db-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_insert.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dist_priv.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_row_format.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_misc.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_index_ordered.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_compat_downward.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_tmp_table_and_DDL.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_bug31754.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_basic.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ps_7ndb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/strict_autoinc_5ndb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_short_sigs.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_init_schema_locks_count.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_cache_multi2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_read_multi_range.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_types.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_alter_table2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_schema_tolerance.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_global_schema_lock.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restart_nostart.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/test_mgmd.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_create_table.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_database.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_addnode.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_conv_padding.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndbinfo_drop.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_undolog.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndbapi.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_partition_error2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_blob_partition.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_sql_features.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_truncate.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_alter_table_online2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_jtie.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_wait_started.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/show_attributes.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_native_default_support.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndbinfo.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_bulk_delete.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/show_primary_keys.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_single_user.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dbug_tc_select.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_index_unique.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_global_schema_lock_error.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_ddl_open_trans.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_partition_range.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_cache.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_multi.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_bitfield.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_trigger.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_partition_hash.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_index.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_compat_compression.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_cache_trans.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_alter_table_backup.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_blob_big.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_view.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndbinfo_cache.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_config2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_select_count.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_schema_partitions.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndbinfo_dump.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_temporary.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restart_start.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_waiter.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_minmax.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_alter_table_error.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_mgm.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_disk2memory.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_row_count.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_hidden_pk.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_disconnect_ddl.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dbug_tc_select_3.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_condition_pushdown.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_bug26793.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_bug12581213.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_sp.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_conv_promotion.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_gis.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_reconnect.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_cache_multi.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_auto_increment.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_update.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_column_properties.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_sql_allow_batching.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_bug12581213.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_basic.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_partition_error.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_restore_compat.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dbug_tc_select_1.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_multi_row.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_short_sigs.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_loaddatalocal.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_statistics0.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_bug31477.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_single_user-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndbinfo_create.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_limit.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dbug_lock.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_index_stat.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_optimized_node_selection.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/show_varpart.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dbug_tc_select_2.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_replace.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_compat_endianness.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_autoinc.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_blob.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/clusterj_jpa.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_partition_key.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_alter.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_share.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/loaddata_autocom_ndb.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_index_stat_enable.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_wait_nostart.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_ddl.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/clusterj.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_partition_list.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_conv_lossy_integral.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_conv_lossy_charbinary.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/have_ndbinfo.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_dd_dump.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_transaction.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_grant.later
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_cache2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_load.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_schema_locks_count.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_mgm.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_alter_table_online_multi.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_lock_table.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_print.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_optimize_table.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_discover_db.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_update_no_read.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_config.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_alter_table_online.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_rename.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/have_ndb_dist_priv.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/bug36547.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_discover.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_restore_compat_compression-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_add_partition.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_alter_table.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/t/ndb_share.test
-- Installing: /mysql/software/mysql-test/./suite/ndb/include
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/have_java.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/run_ndbapitest.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/restart_random_node.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/have_junit.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_add_node.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/run_java.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_desc_print.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/have_connectorj.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/have_clusterj.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/have_ndbjtie_junit.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/restart_cluster_rolling.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/memory_usage.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/have_clusterj_jpa.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_init_scan_counts.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/restart_cluster.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_scan_counts.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/restart_node.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_info.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_init_execute_count.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_execute_count.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/have_openjpa.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_add_node_mysqld.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/include/ndb_share_check_shares.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb/bug49400.ini
-- Installing: /mysql/software/mysql-test/./suite/ndb/my.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb/ndb_config_mycnf2.cnf
-- Installing: /mysql/software/mysql-test/./suite/federated
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_plugin.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_bug_13118.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_bug_13118.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_debug.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_archive.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_transactions.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_server.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_archive.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_bug_35333.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_bug_35333.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_debug.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_transactions.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_bug_25714.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_bug_25714.test
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_server.result
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_transactions-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/federated/include
-- Installing: /mysql/software/mysql-test/./suite/federated/include/federated.inc
-- Installing: /mysql/software/mysql-test/./suite/federated/include/federated_cleanup.inc
-- Installing: /mysql/software/mysql-test/./suite/federated/include/have_federated_db.inc
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_debug-master.opt
-- Installing: /mysql/software/mysql-test/./suite/federated/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/federated/my.cnf
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_innodb-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/federated/federated_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./suite/stress
-- Installing: /mysql/software/mysql-test/./suite/stress/r
-- Installing: /mysql/software/mysql-test/./suite/stress/r/ddl_csv.result
-- Installing: /mysql/software/mysql-test/./suite/stress/r/ddl_archive.result
-- Installing: /mysql/software/mysql-test/./suite/stress/r/ddl_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/stress/r/ddl_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/stress/r/ddl_memory.result
-- Installing: /mysql/software/mysql-test/./suite/stress/t
-- Installing: /mysql/software/mysql-test/./suite/stress/t/ddl_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/stress/t/wrapper.test
-- Installing: /mysql/software/mysql-test/./suite/stress/t/ddl_memory.test
-- Installing: /mysql/software/mysql-test/./suite/stress/t/ddl_csv.test
-- Installing: /mysql/software/mysql-test/./suite/stress/t/ddl_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/stress/t/ddl_archive.test
-- Installing: /mysql/software/mysql-test/./suite/stress/include
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl4.inc
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl.pre
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl1.inc
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl6.inc
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl2.inc
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl3.inc
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl5.inc
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl7.inc
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl.cln
-- Installing: /mysql/software/mysql-test/./suite/stress/include/ddl8.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_users_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_force_load_corrupted_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pid_file_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_flush_log_at_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_read_io_threads_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slow_query_log_file_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_slow_admin_statements_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/thread_concurrency_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_use_native_aio_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/report_host_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_tmp_tables_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/net_read_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/master_verify_checksum_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ssl_ca_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_exec_mode_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/delayed_insert_limit_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_api_enable_mdl_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/preload_buffer_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_large_prefix_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pseudo_thread_id_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_heap_table_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_log_buffer_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/tx_isolation_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/auto_increment_offset_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_cache_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/master_info_repository_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_sync_array_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/thread_handling_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_seeks_for_key_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_table_locks_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/disconnect_on_expired_password_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/error_count_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/init_slave_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_compression_pad_pct_max_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_sync_spin_loops_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/concurrent_insert_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_enable_diag_print_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/insert_id_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/all_vars.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_database_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_enable_stopword_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/lc_messages_dir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_connection_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/range_alloc_block_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_max_dirty_pages_pct_lwm_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_insert_delayed_threads_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_prealloc_size_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_doublewrite_batch_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_page_hash_locks_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_session_connect_attrs_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ssl_crlpath_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_safe_updates_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_rows_search_algorithms_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/net_retry_count_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/metadata_locks_cache_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_open_files_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/proxy_user_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/group_concat_max_len_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/keep_files_on_create_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/block_encryption_mode_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/delay_key_write_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_undo_tablespaces_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/automatic_sp_privileges_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ft_stopword_file_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/tx_read_only_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/default_week_format_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/gtid_next_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/version_compile_os_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/autocommit_func3.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/explicit_defaults_for_timestamp_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_error_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/end_markers_in_json_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/completion_type_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/large_pages_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/collation_server_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/net_write_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/relay_log_space_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_trace_offset_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/flush_time_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/lc_time_names_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/identity_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_autoinc_lock_mode_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_limit_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_net_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_monitor_reset_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sha256_password_private_key_path_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rand_seed2_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/gtid_executed_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_connect_errors_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sync_relay_log_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_load_abort_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_transaction_retries_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_monitor_reset_all_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_spin_wait_delay_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/table_open_cache_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_log_bin_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/open_files_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/tmp_table_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/join_buffer_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/local_infile_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_prepared_stmt_count_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_log_files_in_group_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/gtid_mode_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_direct_non_transactional_updates_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_change_buffering_debug_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_purge_threads_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/skip_external_locking_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_flush_method_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_slow_admin_statements_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_prepared_stmt_count_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_cond_classes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/low_priority_updates_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/collation_database_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/relay_log_index_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_semi_sync_slave_enabled_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sync_relay_log_info_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_undo_directory_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_openssl_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_row_image_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/hostname_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_checksum_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_cond_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_change_buffer_max_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/collation_connection_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_io_capacity_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_connection_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_repair_threads_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_trace_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_table_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/metadata_locks_hash_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/default_storage_engine_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/multi_range_count_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/skip_networking_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_rtree_keys_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/gtid_owned_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_sort_buffer_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/large_files_support_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_load_tmpdir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/back_log_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/wait_timeout_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_force_recovery_crash_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_server_stopword_table_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_adaptive_max_sleep_delay_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_compression_failure_threshold_pct_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/plugin_dir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_select_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_transaction_retries_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/delay_key_write_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/auto_increment_increment_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_checksums_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/init_connect_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/external_user_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/named_pipe_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_format_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/version_comment_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/show_old_temporals_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_semi_sync_slave_trace_level_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_locks_unsafe_for_binlog_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_min_res_unit_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pseudo_slave_mode_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/server_uuid_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/skip_name_resolve_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_low_priority_updates_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/locked_in_memory_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_data_pointer_size_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/lc_messages_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_saved_page_number_debug_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_dump_at_shutdown_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_replication_delay_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_file_classes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_flush_log_at_trx_commit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/foreign_key_checks_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_setup_objects_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_client_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_trx_rseg_n_slots_debug_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_seeks_for_key_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_warnings_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/secure_auth_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/system_time_zone_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_file_format_check_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_bin_trust_function_creators_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_events_stages_hl_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_system_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/general_log_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ft_max_word_len_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_io_capacity_max_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/foreign_key_checks_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/read_rnd_buffer_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_support_xa_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/license_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_rows_query_log_events_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_strict_mode_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_error_func3.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_sp_recursion_depth_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_online_alter_log_max_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/relay_log_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/profiling_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/delayed_insert_limit_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_bin_basename_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/autocommit_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/net_retry_count_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_accounts_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_trace_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/stored_program_cache_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/unique_checks_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/new_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_big_selects_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/server_id_bits_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_checkpoint_group_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_events_waits_hl_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_semi_sync_master_wait_no_slave_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ft_boolean_syntax_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_thread_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_auto_is_null_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/tmpdir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/timed_mutexes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_relay_log_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_delayed_threads_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_throttle_queries_not_using_indexes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_mmap_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_user_connections_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/basedir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/completion_type_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_sql_verify_checksum_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/key_buffer_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_limit_optimistic_insert_debug_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/read_buffer_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rand_seed1_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_max_flush_queue_time_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/protocol_version_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ignore_builtin_innodb_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ssl_cert_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ft_min_word_len_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/debug_sync_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/expire_logs_days_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_dynamic_loading_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_stats_persistent_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/interactive_timeout_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/avoid_temporal_upgrade_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/report_password_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/transaction_alloc_block_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_query_cache_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_type_conversions_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/last_insert_id_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/delayed_queue_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/profiling_h_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_purge_run_now_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/default_tmp_storage_engine_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_slow_slave_statements_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_safe_updates_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_monitor_enable_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slow_query_log_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/key_cache_block_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/auto_increment_offset_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ssl_key_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/key_cache_division_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_allow_batching_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_join_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/general_log_file_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/big_tables_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_slave_skip_counter_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/secure_file_priv_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/autocommit_func2.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_support_xa_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_socket_classes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_optimize_fulltext_only_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_digests_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/version_compile_machine_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/group_concat_max_len_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_use_mmap_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/relay_log_info_file_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_bin_use_v1_row_events_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_doublewrite_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_min_token_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_digest_length_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_warnings_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_gtid_simple_recovery_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_client_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/large_page_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/transaction_allow_batching_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sha256_password_public_key_path_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/key_cache_age_threshold_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_slave_updates_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/delayed_insert_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_notes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/collation_connection_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_flush_neighbors_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_symlink_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_quote_show_create_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlogging_impossible_mode_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_statement_classes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_read_only_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/read_only_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/eq_range_index_dive_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_geometry_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/timestamp_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_semi_sync_master_enabled_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_old_blocks_time_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/core_file_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/autocommit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/thread_cache_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/server_id_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_api_bk_commit_interval_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_read_ahead_threshold_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_lru_scan_depth_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_socket_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_data_file_path_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/auto_increment_increment_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slow_query_log_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_random_read_ahead_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/datadir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/general_log_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/relay_log_info_repository_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/interactive_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_stmt_cache_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_fast_shutdown_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_disable_sort_file_cache_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/delayed_queue_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_disable_background_merge_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ft_boolean_syntax_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slow_query_log_file_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_max_token_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_limit_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_file_handles_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/table_open_cache_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_events_statements_h_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_sort_pll_degree_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/concurrent_insert_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/thread_cache_size_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_load_now_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/date_format_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_max_sort_file_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_server_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_sort_length_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/version_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_stage_classes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_aux_table_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_load_at_startup_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_file_io_threads_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_trx_purge_view_update_only_debug_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/updatable_views_with_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_warnings_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_binlog_stmt_cache_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_log_off_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/flush_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_allowed_packet_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/collation_database_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ssl_cipher_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/thread_stack_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_undo_logs_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_stats_method_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/timestamp_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_write_io_threads_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_queries_not_using_indexes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_cmp_per_index_enabled_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_force_recovery_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_stats_method_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_output_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_file_per_table_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_recovery_rank_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_parallel_workers_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_autoinc_lock_mode_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/datetime_format_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/autocommit_func4.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_filesystem_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_wlock_invalidate_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_stats_persistent_sample_pages_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_compress_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_alloc_block_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_quote_show_create_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/general_log_file_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_events_waits_h_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_old_blocks_pct_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_bin_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/identity_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/key_cache_age_threshold_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_status_output_locks_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_results_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_search_depth_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/multi_range_count_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/div_precision_increment_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_num_word_optimize_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_ssl_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_sort_buffer_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/report_port_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_adaptive_hash_index_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_rollback_segments_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_buffer_result_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/port_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_stats_method_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ft_query_expansion_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_result_cache_limit_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_write_lock_count_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_monitor_disable_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/storage_engine_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_log_compressed_pages_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/lc_time_names_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/shared_memory_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_error_func2.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_big_selects_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_error_count_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_results_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/skip_show_database_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/relay_log_recovery_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_setup_actors_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_bin_index_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/gtid_purged_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/performance_schema_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/time_format_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_thread_concurrency_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_semi_sync_master_trace_level_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_status_output_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_adaptive_flushing_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_trace_max_mem_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/div_precision_increment_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_warnings_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_profiling_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_api_disable_rowlock_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_stmt_cache_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buf_flush_list_now_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/debug_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/key_buffer_size_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_binlog_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/bulk_insert_buffer_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_autoextend_increment_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_use_sys_malloc_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/old_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_recovery_rank_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_dump_now_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/lower_case_table_names_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ssl_crl_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slow_launch_time_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_sort_buffer_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/host_cache_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/local_infile_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sort_buffer_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/bind_address_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_purge_stop_now_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_data_home_dir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_version_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_api_enable_binlog_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/tx_isolation_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/connect_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_seeks_for_key_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_write_lock_count_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/old_passwords_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_rwlock_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sync_master_info_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_buffer_result_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_cache_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_table_locks_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_log_off_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_rollback_on_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sync_frm_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_lock_wait_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/long_query_time_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/join_buffer_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_mirrored_log_groups_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/min_examined_row_limit_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_pending_jobs_size_max_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/collation_server_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/last_insert_id_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_stop_slave_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_skip_errors_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_output_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_api_trx_level_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_binlog_cache_size_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_file_format_max_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_file_format_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_wlock_invalidate_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_mutex_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_user_connections_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_switch_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ignore_db_dirs_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sort_buffer_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_alloc_block_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_mode_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_thread_classes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/report_user_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_max_binlog_size_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_mode_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/range_alloc_block_size_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_stats_auto_recalc_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_select_limit_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/table_definition_cache_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/secure_file_priv2.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_sp_recursion_depth_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_sort_length_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_sets_dir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/secure_file_priv.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_repair_threads_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/delayed_insert_limit_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/socket_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_max_allowed_packet_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_events_stages_h_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_join_size_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_evict_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_bin_trust_function_creators_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_cache_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_connections_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_max_dirty_pages_pct_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_prealloc_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_database_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_trace_offset_max.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_trace_features_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/enforce_gtid_consistency_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_compression_level_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_log_group_home_dir_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/transaction_prealloc_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_max_dirty_pages_pct_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/old_alter_table_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sql_notes_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_change_buffering_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/have_crypt_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_log_checkpoint_now_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_limit_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/time_zone_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_binlog_cache_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_stats_transient_sample_pages_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_recover_options_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/lower_case_file_system_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_min_res_unit_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_stats_sample_pages_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/updatable_views_with_limit_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_flushing_avg_loops_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/event_scheduler_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_log_file_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/init_file_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_mutex_classes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_compressed_protocol_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/automatic_sp_privileges_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_table_handles_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slave_checkpoint_period_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_digest_length_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/slow_launch_time_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_tmp_tables_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/autocommit_func5.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/relay_log_basename_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/shared_memory_base_name_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/timestamp_sysdate_is_now_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_checksum_algorithm_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_semi_sync_master_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/sync_binlog_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_commit_concurrency_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_hosts_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_purge_batch_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/read_only_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_fil_make_page_dirty_debug_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/bulk_insert_buffer_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/wait_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_adaptive_flushing_lwm_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_type_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/query_cache_type_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_max_purge_lag_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_print_all_deadlocks_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_total_cache_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/rpl_init_slave_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/min_examined_row_limit_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_data_pointer_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_error_action_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/log_error_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_connect_errors_basic_64.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/insert_id_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/warning_count_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_allowed_packet_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_events_statements_hl_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_max_purge_lag_delay_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/net_buffer_length_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_ft_user_stopword_table_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_thread_sleep_delay_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/max_length_for_sort_data_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_rwlock_classes_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_buffer_pool_filename_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/myisam_max_sort_file_size_basic_32.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/optimizer_prune_level_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/lock_wait_timeout_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/time_zone_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/default_week_format_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/binlog_order_commits_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_page_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/old_passwords_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/secure_auth_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/simplified_binlog_gtid_recovery_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/pfs_max_file_instances_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/maximum_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_concurrency_tickets_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/character_set_server_func.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/ssl_capath_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_stats_on_metadata_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/relay_log_purge_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/r/innodb_additional_mem_pool_size_basic.result
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_fast_shutdown_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_launch_time_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/lc_time_names_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/group_concat_max_len_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_checkpoint_period_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/maximum_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/performance_schema_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_api_trx_level_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_page_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_purge_stop_now_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_read_io_threads_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/skip_name_resolve_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_waits_hl_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_waits_h_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_max_purge_lag_delay_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_write_lock_count_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_max_dirty_pages_pct_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_crypt_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/thread_handling_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_file_instances_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_filename_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_flush_log_at_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func3.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/init_slave_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_slow_admin_statements_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_sets_dir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/host_cache_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/back_log_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/report_password_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_min_token_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delayed_insert_limit_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_checkpoint_group_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_query_log_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_stats_persistent_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/unique_checks_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/insert_id_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_results_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_direct_non_transactional_updates_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/lc_messages_dir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_type_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/enforce_gtid_consistency_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_recover_options_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/general_log_file_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_support_xa_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_allowed_packet_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_force_recovery_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_checksum_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/timestamp_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_ssl_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/old_alter_table_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_waits_h_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/general_log_file_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_exec_mode_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_stage_classes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_log_checkpoint_now_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_slow_admin_statements_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_mode_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_io_capacity_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_buffer_result_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/relay_log_basename_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_trx_purge_view_update_only_debug_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_statements_hl_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_monitor_disable_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/auto_increment_increment_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delayed_queue_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delay_key_write_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_disable_background_merge_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_trace_max_mem_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_flush_neighbors_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_load_at_startup_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/table_open_cache_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/event_scheduler_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_join_size_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_digest_length_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_client_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/version_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_buffer_result_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ft_min_word_len_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func2-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_prepared_stmt_count_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_min_res_unit_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/min_examined_row_limit_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/version_compile_machine_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_limit_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_max_sort_file_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/lc_time_names_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_filesystem_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_log_file_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_socket_classes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_load_now_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_error_func2.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_stop_slave_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/large_files_support_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_rtree_keys_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/init_connect_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_flush_log_at_trx_commit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/insert_id_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_limit_optimistic_insert_debug_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/gtid_owned_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/metadata_locks_hash_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_purge_batch_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/lc_messages_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_table_locks_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/skip_show_database_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/debug_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_data_home_dir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pseudo_thread_id_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/simplified_binlog_gtid_recovery_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_fil_make_page_dirty_debug_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_additional_mem_pool_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/license_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_sp_recursion_depth_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func4-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/lower_case_file_system_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_digest_length_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_max_binlog_size_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/profiling_h_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_trace_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_api_enable_binlog_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_setup_objects_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_autoinc_lock_mode_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_sync_array_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_repair_threads_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_sql_verify_checksum_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/net_buffer_length_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_print_all_deadlocks_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_num_word_optimize_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/storage_engine_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_monitor_enable_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_rwlock_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_spin_wait_delay_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_sp_recursion_depth_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_binlog_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/default_tmp_storage_engine_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_cond_instances_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_file_format_check_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ssl_crl_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_warnings_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_support_xa_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/secure_auth_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_allowed_packet_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/host_cache_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_max_binlog_size_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_socket_classes_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_error_count_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/storage_engine_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_mode_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_rwlock_classes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_stats_on_metadata_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_type_conversions_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_master_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_file_classes_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_format_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_slave_trace_level_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_api_enable_mdl_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_accounts_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_thread_concurrency_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_force_recovery_crash_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/tx_isolation_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/low_priority_updates_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_log_buffer_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/gtid_mode_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_version_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rand_seed2_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/relay_log_purge_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_connect_errors_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/port_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/div_precision_increment_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_tmp_tables_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_alloc_block_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_statements_hl_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_api_disable_rowlock_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/old_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_mirrored_log_groups_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_error_func.cnf
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/bulk_insert_buffer_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/end_markers_in_json_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ssl_capath_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/timed_mutexes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_alloc_block_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_relay_log_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_auto_is_null_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/relay_log_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_data_file_path_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_load_abort_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_notes_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_bin_use_v1_row_events_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_query_log_file_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_gtid_simple_recovery_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/key_cache_division_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_error_func3.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/keep_files_on_create_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_trace_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_mmap_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_quote_show_create_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/hostname_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_adaptive_hash_index_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_cond_classes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_cache_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/time_zone_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_socket_instances_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/report_user_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/long_query_time_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_binlog_cache_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_stats_transient_sample_pages_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/read_rnd_buffer_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_heap_table_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_prepared_stmt_count_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_server_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_stats_persistent_sample_pages_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_session_connect_attrs_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/skip_name_resolve_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_log_off_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/relay_log_index_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_insert_delayed_threads_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ignore_builtin_innodb_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/key_cache_age_threshold_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/interactive_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_digests_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/server_uuid_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_user_connections_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_statement_classes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_lock_wait_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delayed_insert_limit_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_log_off_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_max_token_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/thread_cache_size_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_stats_sample_pages_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/date_format_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_master_wait_no_slave_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/join_buffer_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_error_func2.cnf
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_slave_enabled_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_table_handles_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_join_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/lock_wait_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_skip_errors_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_connect_errors_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_enable_diag_print_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/auto_increment_offset_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_result_cache_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_stages_hl_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_slave_skip_counter_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/group_concat_max_len_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_delayed_threads_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_evict_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_seeks_for_key_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sort_buffer_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_openssl_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ft_query_expansion_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_digest_length_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/collation_connection_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/tx_read_only_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_digest_length_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_server_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/auto_increment_increment_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_rwlock_instances_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ssl_cert_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_read_ahead_threshold_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_file_format_max_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sync_relay_log_info_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/flush_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_error_action_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_flush_method_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_error_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_queries_not_using_indexes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_thread_classes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_file_format_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/thread_cache_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/secure_file_priv-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/net_retry_count_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_bin_basename_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_order_commits_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_server_stopword_table_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sort_buffer_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/timestamp_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_file_classes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_enable_stopword_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/key_buffer_size_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/min_examined_row_limit_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_write_lock_count_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/default_week_format_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_read_only_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_big_selects_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/relay_log_info_file_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_random_read_ahead_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/net_retry_count_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_cond_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/open_files_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/key_cache_block_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_filename_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/thread_stack_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/all_vars-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_file_per_table_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_bin_index_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/init_file_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delayed_insert_limit_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_thread_sleep_delay_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/external_user_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_stats_method_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_doublewrite_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_cache_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_output_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_strict_mode_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_seeks_for_key_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_prealloc_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/datetime_format_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sync_binlog_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_thread_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_results_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/profiling_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/transaction_alloc_block_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/socket_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/secure_file_priv.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/large_page_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/secure_auth_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_rollback_segments_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_query_log_file_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/tx_isolation_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/skip_networking_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/explicit_defaults_for_timestamp_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sync_frm_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_stmt_cache_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ft_max_word_len_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_stages_h_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_force_load_corrupted_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_tmp_tables_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/datadir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_file_format_max_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/multi_range_count_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_mutex_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/maximum_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_statements_h_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_type_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_limit_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/secure_file_priv_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/shared_memory_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_user_connections_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_slave_updates_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/table_open_cache_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_table_handles_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/range_alloc_block_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sha256_password_private_key_path_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/last_insert_id_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_accounts_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_concurrency_tickets_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_cmp_per_index_enabled_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sync_relay_log_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/read_buffer_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_sync_spin_loops_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_wlock_invalidate_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_locks_unsafe_for_binlog_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/collation_server_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_data_pointer_size_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_stages_hl_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/collation_database_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/key_buffer_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_wlock_invalidate_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_page_hash_locks_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_checksum_algorithm_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/warning_count_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_file_handles_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/protocol_version_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_query_log_file_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/default_storage_engine_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_setup_objects_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_sp_recursion_depth_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_disable_sort_file_cache_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_file_per_table_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_statement_classes_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_user_stopword_table_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_profiling_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/performance_schema_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_launch_time_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/avoid_temporal_upgrade_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_io_capacity_max_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/master_verify_checksum_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_bin_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/general_log_file_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_stats_auto_recalc_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/identity_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_master_enabled_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_adaptive_flushing_lwm_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_limit_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_compress_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ft_boolean_syntax_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/proxy_user_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_write_io_threads_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_slave_enabled_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_select_limit_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_online_alter_log_max_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_large_prefix_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_status_output_locks_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_change_buffering_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/multi_range_count_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/relay_log_space_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/disconnect_on_expired_password_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_total_cache_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_compression_pad_pct_max_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sha256_password_public_key_path_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlogging_impossible_mode_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/updatable_views_with_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_type_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_use_sys_malloc_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_checksums_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_error_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_users_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/connect_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_query_cache_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/read_only_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_seeks_for_key_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/version_compile_os_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/general_log_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_monitor_reset_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/tx_isolation_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_max_dirty_pages_pct_lwm_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_connection_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_connections_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_low_priority_updates_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_use_mmap_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_stats_method_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_trx_rseg_n_slots_debug_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_transaction_retries_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delay_key_write_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/version_comment_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_max_sort_file_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_throttle_queries_not_using_indexes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/gtid_next_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_slave_trace_level_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_change_buffer_max_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_open_files_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_log_group_home_dir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/relay_log_recovery_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/general_log_file_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_log_bin_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_stmt_cache_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/collation_database_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_mutex_instances_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/report_port_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_launch_time_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_setup_actors_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/range_alloc_block_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_api_bk_commit_interval_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/identity_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pseudo_slave_mode_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/concurrent_insert_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_undo_tablespaces_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_file_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_old_blocks_time_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/wait_timeout_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_sort_buffer_size_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/timestamp_sysdate_is_now_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_bin_trust_function_creators_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_optimize_fulltext_only_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_max_purge_lag_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_query_log_file_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/gtid_executed_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ignore_db_dirs_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_master_trace_level_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_undo_logs_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slow_query_log_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/read_only_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_master_enabled_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/transaction_allow_batching_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/error_count_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/debug_sync_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sync_master_info_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_rwlock_classes_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_wlock_invalidate_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_master_wait_no_slave_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/completion_type_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_compressed_protocol_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_compression_level_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/auto_increment_offset_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_saved_page_number_debug_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delayed_insert_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/plugin_dir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_compression_failure_threshold_pct_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/secure_auth_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_sort_pll_degree_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/metadata_locks_cache_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/old_passwords_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_aux_table_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/bulk_insert_buffer_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/locked_in_memory_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/bind_address_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/show_old_temporals_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_prealloc_size_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_change_buffering_debug_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_database_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/new_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_adaptive_max_sleep_delay_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_socket_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/tmpdir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/completion_type_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/automatic_sp_privileges_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_connection_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_symlink_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_notes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/table_definition_cache_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/secure_file_priv2.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_commit_concurrency_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_hosts_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_digests_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_sort_length_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_session_connect_attrs_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/key_cache_age_threshold_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_old_blocks_pct_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/expire_logs_days_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/join_buffer_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_master_trace_level_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func5.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/foreign_key_checks_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_max_flush_queue_time_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/thread_cache_size_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_stats_method_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func4.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/flush_time_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_log_files_in_group_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ignore_db_dirs_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_replication_delay_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func3-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_output_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/report_host_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_trace_features_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_sort_buffer_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/last_insert_id_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_prune_level_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_file_io_threads_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/automatic_sp_privileges_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_table_instances_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ft_stopword_file_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/default_week_format_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_load_tmpdir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_mutex_classes_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_setup_actors_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_purge_threads_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/identity_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_trace_offset_max-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/lower_case_table_names_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_waits_hl_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_lru_scan_depth_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_repair_threads_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_parallel_workers_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_monitor_reset_all_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/transaction_prealloc_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/block_encryption_mode_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/general_log_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_big_selects_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_flushing_avg_loops_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/system_time_zone_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/collation_connection_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/interactive_timeout_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_sort_buffer_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func5-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rand_seed1_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_limit_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_geometry_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_ft_cache_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_slow_slave_statements_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/big_tables_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delayed_queue_size_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_autoinc_lock_mode_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_statements_h_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/server_id_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/have_dynamic_loading_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/local_infile_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_stage_classes_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_search_depth_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/stored_program_cache_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_cond_classes_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_sort_length_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/metadata_locks_cache_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_mutex_classes_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_users_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_row_image_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_transaction_retries_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_allow_batching_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/old_passwords_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_max_dirty_pages_pct_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_table_locks_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/local_infile_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_adaptive_flushing_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_warnings_basic_64.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/large_pages_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ssl_crlpath_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_purge_run_now_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_log_compressed_pages_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_quote_show_create_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_pending_jobs_size_max_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_switch_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/skip_external_locking_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_dump_now_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/basedir_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_binlog_stmt_cache_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/eq_range_index_dive_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/net_write_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/max_length_for_sort_data_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/concurrent_insert_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buf_flush_list_now_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_use_native_aio_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_buffer_pool_dump_at_shutdown_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_thread_classes_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/server_id_bits_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/collation_server_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_type_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pid_file_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_status_output_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/time_format_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_system_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/binlog_rows_query_log_events_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/relay_log_info_repository_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_warnings_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_trace_offset_max.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/tmp_table_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_rows_search_algorithms_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_database_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_table_instances_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/core_file_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_thread_instances_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_filesystem_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/myisam_data_pointer_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_max_allowed_packet_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_undo_directory_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_autoinc_lock_mode_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/last_insert_id_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/thread_concurrency_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_safe_updates_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_safe_updates_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_init_slave_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ft_boolean_syntax_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_select_limit_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/sql_warnings_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/master_info_repository_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/secure_file_priv2-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/shared_memory_base_name_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ssl_cipher_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/updatable_views_with_limit_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/slave_net_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/autocommit_func2.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/wait_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/all_vars.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_autoextend_increment_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_rollback_on_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/rpl_semi_sync_master_timeout_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/named_pipe_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/innodb_doublewrite_batch_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/foreign_key_checks_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/plugin_dir_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ssl_ca_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/core_file_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/ssl_key_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_events_stages_h_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/gtid_purged_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/net_read_timeout_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_max_file_handles_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/timestamp_sysdate_is_now_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/preload_buffer_size_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/query_cache_min_res_unit_basic_32.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/optimizer_trace_offset_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/pfs_hosts_size_basic-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/div_precision_increment_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/delay_key_write_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/time_zone_func.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/log_bin_trust_function_creators_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/t/character_set_client_basic.test
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/query_cache_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/sort_buffer_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/max_connect_errors_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/slave_transaction_retries_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/myisam_sort_buffer_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/max_seeks_for_key_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/max_write_lock_count_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/myisam_max_sort_file_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/bin_relay_log_basename_index.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/delayed_insert_limit_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/multi_range_count_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/myisam_repair_threads_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/log_warnings_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/max_tmp_tables_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/net_retry_count_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/delayed_queue_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/key_cache_age_threshold_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/query_alloc_block_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/autocommit_func2.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/binlog_cache_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/bulk_insert_buffer_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/query_cache_limit_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/charset_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/binlog_stmt_cache_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/range_alloc_block_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/query_cache_min_res_unit_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/join_buffer_size_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/collation_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/sys_vars/inc/min_examined_row_limit_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_index_large_prefix_4k.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_cmp_per_index.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_bug36172.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_bug56680.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb-create-options.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_prefix_index_liftedlimit.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_4k.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_index_large_prefix.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_bug36169.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_16k.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_wl6347_comp_indx_stat.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_cmp_drop_table.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_index_large_prefix_8k.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb-wl5522-debug-zip.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_bug53591.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb-restart.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb-zip.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_8k.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb-wl5522-zip.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/r/innodb_bug52745.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_cmp_drop_table.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_index_large_prefix_8k.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_bug36172.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_bug56680.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb-create-options.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_index_large_prefix.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_index_large_prefix_4k.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_bug52745.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb-wl5522-zip.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_bug53591.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_4k.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_16k.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_wl6347_comp_indx_stat.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb-restart.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb-zip.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_cmp_drop_table-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_8k.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb-wl5522-debug-zip.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_cmp_per_index.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_bug36169.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/t/innodb_prefix_index_liftedlimit.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/include
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/include/innodb_stats_comp_index.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/include/innodb_fetch_records.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/include/innodb_load_data.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/include/innodb_create_tab_indx.inc
-- Installing: /mysql/software/mysql-test/./suite/innodb_zip/include/innodb_stats_restart.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_unique_epoch.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_log_apply_status.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_ignore_db.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_discover.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_ddl_multi.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_restore.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_variants.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_basic.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_multi.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_log_bin.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/r/ndb_binlog_format.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_multi.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_restore.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_log_apply_status.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_get_binlog_stmts.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_ignore_db-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_format.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_ddl_multi.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_get_binlog_stmts_basic.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_unique_epoch.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_discover.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_log_bin.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_variants.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_basic.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_variants.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_unique_epoch.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_restore-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/t/ndb_binlog_ignore_db.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_binlog/my.cnf
-- Installing: /mysql/software/mysql-test/./suite/large_tests
-- Installing: /mysql/software/mysql-test/./suite/large_tests/r
-- Installing: /mysql/software/mysql-test/./suite/large_tests/r/rpl_slave_net_timeout.result
-- Installing: /mysql/software/mysql-test/./suite/large_tests/r/alter_table.result
-- Installing: /mysql/software/mysql-test/./suite/large_tests/r/lock_tables_big.result
-- Installing: /mysql/software/mysql-test/./suite/large_tests/t
-- Installing: /mysql/software/mysql-test/./suite/large_tests/t/rpl_slave_net_timeout-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/large_tests/t/lock_tables_big.test
-- Installing: /mysql/software/mysql-test/./suite/large_tests/t/rpl_slave_net_timeout.test
-- Installing: /mysql/software/mysql-test/./suite/large_tests/t/alter_table.test
-- Installing: /mysql/software/mysql-test/./suite/large_tests/README.TXT
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_multiple_index.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext2.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fts_compatibility.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext_left_join.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext_var.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_savepoint.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_proximity.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/subexpr.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_opt.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext_multi.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_misc_debug.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/phrase.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_large_records.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innobase_drop_fts_index_table.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_result_cache_limit.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_misc_1.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_stopword_charset.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext_update.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext_misc.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fts_compatibility_win.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_index_table.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_transaction.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext_cache.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb-fts-stopword.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext_distinct.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext_order_by.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb-fts-basic.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/fulltext3.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb-fts-ddl.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb_fts_misc.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/r/innodb-fts-fic.result
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_misc_debug.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innobase_drop_fts_index_table.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_misc.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_savepoint.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/subexpr.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_var.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_multi.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_cache.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_result_cache_limit.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_proximity.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_left_join.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_stopword_charset.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/phrase.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_update.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_distinct.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb-fts-ddl.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_multiple_index.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext2.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb-fts-fic.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb-fts-basic.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fts_compatibility_win.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_order_by.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_plugin-master.opt
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext3.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_misc_1.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb-fts-stopword.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_plugin.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fts_compatibility.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/fulltext_misc.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_index_table.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_opt.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_large_records.test
-- Installing: /mysql/software/mysql-test/./suite/innodb_fts/t/innodb_fts_transaction.test
-- Installing: /mysql/software/mysql-test/./suite/jp
-- Installing: /mysql/software/mysql-test/./suite/jp/r
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_union_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_update_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_charlength_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_create_tbl_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_left_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_lpad_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_locate_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_lpad_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_length_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_lpad_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_lpad_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_where_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_locate_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_length_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_where_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_trim_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_create_tbl_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_reverse_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_rtrim_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_like_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_substring_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_substring_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_trim_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_convert_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_insert_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_length_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_subquery_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_create_tbl_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_reverse_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_insert_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_ps_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_select_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_create_db_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_alter_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_right_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_update_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_convert_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_rtrim_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_convert_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_alter_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_right_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_substring_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_reverse_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_instr_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_rtrim_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_insert_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_create_db_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_ltrim_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_select_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_right_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_charset_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_join_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_rpad_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_left_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_instr_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_locate_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_join_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_instr_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_replace_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_ltrim_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_rtrim_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_replace_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_trim_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_where_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_enum_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_like_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_enum_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_rpad_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_like_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_reverse_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_update_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_subquery_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_create_db_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_locate_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_update_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_select_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_substring_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_subquery_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_replace_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_left_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_alter_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_convert_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_replace_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_rpad_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_create_tbl_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_create_db_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_instr_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_trim_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_like_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_right_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_select_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_alter_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_charlength_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_rpad_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_charset_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_insert_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_length_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_charlength_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_charset_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_subquery_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_join_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_join_utf8.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_enum_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_where_ucs2.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_charset_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_ltrim_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_enum_ujis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_charlength_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_ps_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_ltrim_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/r/jp_left_sjis.result
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0208_ujis.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0212_ujis.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0212_ucs2.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0208_ucs2.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0208_sjis2.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0201_sjis.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0208_sjis.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0201_utf8.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0201_ujis.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0201_ucs2.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0208_sjis3.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0212_utf8.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/std_data/jisx0208_utf8.dat
-- Installing: /mysql/software/mysql-test/./suite/jp/t
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_right_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_join_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_alter_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_join_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_replace_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_where_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_trim_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_update_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_rpad_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_instr_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_select_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_substring_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_select_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_enum_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_left_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_locate_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_trim_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_like_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_ps_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_replace_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_charlength_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_enum_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_lpad_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_length_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_right_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_right_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_union_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_trim_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_charset_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_convert_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_like_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_select_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_create_db_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_locate_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_locate_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_update_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_enum_ucs2-master.opt
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_instr_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_convert_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_rpad_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_create_db_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_where_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_right_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_charset_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_update_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_rtrim_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_select_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_instr_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_alter_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_charlength_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_replace_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_like_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_enum_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_enum_sjis-master.opt
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_ltrim_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_insert_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_subquery_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_reverse_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_enum_ujis-master.opt
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_charlength_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_left_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_length_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_rtrim_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_like_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_locate_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_create_tbl_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_reverse_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_instr_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_enum_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_charlength_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_ltrim_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_rtrim_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_rtrim_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_subquery_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_convert_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_create_tbl_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_subquery_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_join_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_subquery_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_lpad_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_lpad_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_where_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_alter_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_create_db_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_charset_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_length_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_create_tbl_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_create_tbl_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_trim_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_where_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_left_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_update_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_ps_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_left_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_create_db_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_ltrim_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_length_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_charset_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_insert_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_insert_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_substring_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_rpad_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_rpad_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_reverse_sjis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_lpad_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_substring_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_enum_utf8-master.opt
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_convert_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_replace_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_ltrim_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_reverse_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_alter_ujis.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_insert_ucs2.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_join_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/t/jp_substring_utf8.test
-- Installing: /mysql/software/mysql-test/./suite/jp/include
-- Installing: /mysql/software/mysql-test/./suite/jp/include/trim_sjis.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_team
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/r
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/r/ndb_autodiscover2.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/r/ndb_backup_print.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/r/ndb_restart.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/r/ndb_autodiscover3.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/r/ndb_autodiscover.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/r/ndb_dd_backuprestore.result
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/ndb_backup_print.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/ndb_autodiscover3.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/ndb_dd_backuprestore.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/ndb_autodiscover.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/ndb_autodiscover2-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/ndb_autodiscover2.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/ndb_autodiscover3-master.opt
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/ndb_restart.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/ndb_team/my.cnf
-- Installing: /mysql/software/mysql-test/./suite/funcs_1
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/param_check.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/storedproc_02.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/load_sp_tb.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/storedproc_08_show.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/storedproc_08.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/cleanup_sp_tb.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/storedproc_07.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/storedproc_03.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/storedproc_06.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/storedproc/storedproc_10.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/tables2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/is_triggers.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/table_constraints.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/is_routines.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/is_key_column_usage.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/processlist_val.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/is_schemata.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/datadict_priv.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/basics_mixed1.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/tables.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/is_table_query.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/datadict.pre
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/datadict_load.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/tables1.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/basics_mixed2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/datadict_bug_12777.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/is_views.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/processlist_priv.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/is_tables.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/columns.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/statistics.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/datadict/basics_mixed3.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/README.txt
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03e_columns.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03e_definer.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03e_global_db_mix.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_0407.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03e_prepare.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_0102.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_08.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03e_db_level.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_09.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/trig_frkey2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03e_transaction.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03e_db_table_mix.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/trig_frkey.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_03e_table_level.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/triggers/triggers_1011ext.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_bitdata.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_trig_03e.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns_is_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_triggers.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_trig_08.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_routines.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables_mysql_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_column_privileges_is_mysql_test.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_trig_09.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_storedproc_08.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_views.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_trig_0102.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_storedproc_06.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_trig_03.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables_memory.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines_merge.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_table_constraints.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_user_privileges.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_trig_1011ext.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_schema_privileges_is_mysql_test.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_storedproc_03.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_table_privileges.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_trig_frkey.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_cursors.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/processlist_priv_no_prot.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_storedproc_10.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_bitdata.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_statistics.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_trig_1011ext.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_storedproc_02.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns_memory.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_table_constraints_is.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_storedproc_10.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_storedproc_02.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_character_sets.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_func_view.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_cml_memory.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_trig_03.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_storedproc_07.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_column_privileges.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables_myisam_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_table_constraints_mysql.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_storedproc_06.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_storedproc_08.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_trig_1011ext.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/processlist_val_no_prot.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_trig_03.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_storedproc_10.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_trig_0102.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_cursors.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/charset_collation.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_trig_0407.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_table_constraints_mysql_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_collations.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/processlist_val_ps.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_trig_03e.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_storedproc_07.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_trig_08.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_trig_03e.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_storedproc_08.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_events.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_basics_mixed.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/storedproc.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines_archive.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns_is.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_statistics_is.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_views.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_bitdata.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_views-big.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables_is.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_storedproc_03.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_trig_09.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_key_column_usage_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns_mysql.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_cml_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines_federated.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/innodb_views.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_storedproc_07.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_coll_char_set_appl.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_cursors.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_schema_privileges.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_schemata_is_mysql_test.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_statistics_mysql_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines_blackhole.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_schemata_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_key_column_usage.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_trig_09.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_statistics_mysql.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns_mysql_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines_memory.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_trig_08.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_storedproc_06.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_storedproc_02.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines_csv.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_trig_0102.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/processlist_priv_ps.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_func_view.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_storedproc_03.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_routines_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_cml_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_engines_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_func_view.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/memory_trig_0407.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_tables_mysql.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/row_count_func.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_columns_myisam_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/myisam_trig_0407.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_views_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_schemata.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/r/is_triggers_embedded.result
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/lib
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/lib/DataGen_local.pl
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/lib/DataGen_modify.pl
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views/fv_cast.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views/fv1.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views/fv_if1.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views/views_master.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views/fv_ifnull.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views/func_view.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views/fv2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/views/fv_if2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/cursors
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/cursors/cursors_master.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_1011ext-master.opt
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_storedproc_10.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_schemata_is_mysql_test.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_trig_08.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_storedproc_03.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_triggers.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_trig_03e.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_storedproc_08.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines_memory.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_storedproc_02.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_views.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_storedproc_08.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_trig_0102.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_08.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_cursors.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/row_count_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/row_count_func.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_trig_1011ext.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_trig_1011ext-master.opt
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines_csv.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/processlist_priv_ps.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_column_privileges_is_mysql_test.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_user_privileges.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_trig_0102.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_statistics.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_trig_08.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_bitdata.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables_myisam_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables_mysql.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_character_sets.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_trig_1011ext-master.opt
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_views.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_trig_0407.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_trig_03.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_cml_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_table_constraints.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_key_column_usage.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_statistics_mysql.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_views_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_column_privileges.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_storedproc_06.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_storedproc_06.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_storedproc_02.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines_federated.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_1011ext.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_trig_09.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_cursors.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns_myisam_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/charset_collation.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables_mysql_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_key_column_usage_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables_memory.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_storedproc_10.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_routines_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_trig_1011ext.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_triggers_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_statistics_mysql_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_trig_03.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_func_view.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_func_view.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_0102.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_03.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_09.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_bitdata.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns_is_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_storedproc_03.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_schema_privileges.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_trig_09.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_storedproc_08.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_trig_0407.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns_mysql_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/suite.opt
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines_archive.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_views-big.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns_memory.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_schemata_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_table_constraints_mysql_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables_embedded.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_collations.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_frkey.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_coll_char_set_appl.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines_blackhole.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_routines.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_func_view.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns_mysql.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_table_constraints_mysql.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_basics_mixed.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_bitdata.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_storedproc_06.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_table_constraints_is.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_engines_merge.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_table_privileges.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_cml_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_storedproc_07.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_storedproc_07.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_schemata.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/processlist_val_no_prot.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/processlist_priv_no_prot.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/storedproc.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_0407.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_views.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_trig_03e.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_schema_privileges_is_mysql_test.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/processlist_val_ps.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_events.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_storedproc_03.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/memory_storedproc_07.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_storedproc_10.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_tables_is.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_statistics_is.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_storedproc_02.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_cml_memory.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/innodb_trig_03e.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/myisam_cursors.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/t/is_columns_is.test
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/memory_tb4.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/ndb_tb3.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/myisam_tb4.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/show_connection.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/innodb_tb4.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/myisam_tb3.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/memory_tb2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/myisam_tb1.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/myisam_tb2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/tb3.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/memory_tb1.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/bug28309_skip.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/ndb_tb2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/ndb_tb1.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/innodb_tb2.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/innodb_tb1.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/innodb_tb3.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/ndb_tb4.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/cleanup.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/sp_tb.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/include/memory_tb3.inc
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/bitdata
-- Installing: /mysql/software/mysql-test/./suite/funcs_1/bitdata/bitdata_master.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/filesort_pq.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/charset.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/general2_no_prot.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/general_no_prot_none.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/range_no_prot.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/temp_table.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/range_ps_prot.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/general_no_prot_all.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/bugs_ps_prot_none.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/general_ps_prot_none.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/debug.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/bugs_no_prot_none.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/bugs_ps_prot_all.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/subquery_ps_prot.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/subquery_no_prot.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/security_no_prot.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/bugs_no_prot_all.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/general2_ps_prot.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/general_ps_prot_all.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/eq_range_statistics.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/r/security_ps_prot.result
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/subquery_no_prot.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/general_ps_prot_none.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/bugs_ps_prot_none.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/general2_ps_prot.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/range_ps_prot.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/charset.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/general2_no_prot.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/debug.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/subquery_ps_prot.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/general_no_prot_all.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/bugs_no_prot_all.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/general_ps_prot_all.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/general_no_prot_none.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/eq_range_statistics.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/filesort_pq.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/bugs_ps_prot_all.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/range_no_prot.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/temp_table.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/security_ps_prot.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/bugs_no_prot_none.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/t/security_no_prot.test
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/validate_json.py
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/include
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/include/bugs.inc
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/include/security.inc
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/include/subquery.inc
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/include/filesort_pq.inc
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/include/range.inc
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/include/general.inc
-- Installing: /mysql/software/mysql-test/./suite/opt_trace/include/general2.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_big
-- Installing: /mysql/software/mysql-test/./suite/ndb_big/run_query_with_retry.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_big/suite.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_big/smoke.test
-- Installing: /mysql/software/mysql-test/./suite/ndb_big/start_timer.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_big/my.cnf
-- Installing: /mysql/software/mysql-test/./suite/ndb_big/end_timer.inc
-- Installing: /mysql/software/mysql-test/./suite/ndb_big/bug37983.test
-- Installing: /mysql/software/mysql-test/./suite/binlog
-- Installing: /mysql/software/mysql-test/./suite/binlog/combinations
-- Installing: /mysql/software/mysql-test/./suite/binlog/r
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mixed_cache_stat.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_incident.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_mysqlbinlog_row_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_innodb_row.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_spurious_ddl_errors.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_mix_innodb_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_mysqlbinlog_start_stop.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_binlog.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_cache_stat.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_row_ctype_ucs.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog-cp932.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_variables_relay_log_index.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_multi_engine.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_xa_handling.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_variables_log_bin.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_row_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_filter.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_utils.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_database.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_start_comment.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_query_filter_rules.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_ctype_cp932.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_mysqlbinlog_db_filter.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_statement_insert_delayed.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_base64.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_implicit_commit.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_grant.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_mysqlbinlog_row.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_reset_master.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_mysqlbinlog_row_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_drop_tmp_tbl.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_sql_mode.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_unsafe_warning.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_ctype_ucs.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_ps.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_crash_safe_master_checksum.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_tmp_table.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_killed.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_drop_tmp_tbl.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_drop_tbl.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_truncate_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_concat.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_errors.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_mix_innodb_myisam.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_insert_select.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_unsafe.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_simple_recovery.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_start_stop.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_row_trans.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mixed_load_data.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_do_db.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_server_id.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_delete_and_flush_index.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_ctype_cp932.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_trx_empty_assertions.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_enforce_gtid_consistency.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_blackhole.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_max_extension.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_index.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_error_action.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_variables_log_bin_index.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_rewrite.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_cache.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_switch_inside_trans.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_insert_select.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_mysqlbinlog_verbose.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_drop_if_exists.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_cache_stat.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_format_switch_in_tmp_table.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_killed_simulate.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_query_log_events.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_ctype_ucs.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_user_variables.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_stm_ctype_ucs.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_incident_ignore.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_row_drop_tbl.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_gtid_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_truncate_kill.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_start_stop_slave_server_id.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_implicit_commit.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_sf.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_write_error.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_server_start_options.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_row_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_bug36391.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_base64_flag.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_variables_relay_log.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_checksum.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_old_versions.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_binlog.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_bug23533.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_mysqlbinlog_row.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_stm_row.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/r/binlog_hexdump.result
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/ver_5_1-wl2325_s.001
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/ver_5_1-telco.001
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/write-full-row.binlog
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/ver_5_1_17.001
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/ver_trunk_row_v2.001
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/ver_5_1-wl2325_r.001
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/ver_5_1_23.001
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/update-full-row.binlog
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/write-partial-row.binlog
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/bug11747887-bin.000003
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/bug32407.001
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/update-partial-row.binlog
-- Installing: /mysql/software/mysql-test/./suite/binlog/std_data/binlog_old_version_4_1.000001
-- Installing: /mysql/software/mysql-test/./suite/binlog/t
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_insert_select.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_cache-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog-cp932.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_cache_stat.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_killed.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_innodb_stat-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_unsafe-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_truncate_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_insert_select.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_query_filter_rules-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_mix_innodb_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_ctype_cp932.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_format_switch_in_tmp_table.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_bug23533.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_user_variables.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mixed_cache_stat.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_tmp_table.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_drop_if_exists.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_query_log_events.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_index-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_cache_stat.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_server_id.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_row_trans.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_binlog-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_do_db.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_unsafe_warning-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_unsafe_warning.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_incident_ignore.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_drop_tmp_tbl.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_mysqlbinlog_row_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_reset_master.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_killed_simulate-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_index.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mixed_load_data.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog-cp932-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_concat.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_row.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_blackhole.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_row_ctype_ucs.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_write_error.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_old_versions.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_unsafe.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_variables_log_bin-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_variables_relay_log_index.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_xa_handling.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_bug36391-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_mix_innodb_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_switch_inside_trans.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_variables_relay_log-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_ctype_ucs.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_stm_ctype_ucs.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_checksum.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_rewrite.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_variables_relay_log_index-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_variables_relay_log.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_query_filter_rules.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_grant.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_mix_innodb_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_error_action.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_bug36391.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_incident_ignore-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_cache.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_sql_mode.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_delete_and_flush_index.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_mysqlbinlog_row_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_row.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_ps.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_base64_flag.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_drop_tbl.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_binlog.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_multi_engine.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_drop_tbl.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_start_comment.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_base64.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_start_stop_slave_server_id.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_variables_log_bin_index.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_drop_tmp_tbl.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_binlog.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_truncate_kill.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_sf.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_ctype_ucs.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_implicit_commit.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_spurious_ddl_errors.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_incident.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_mysqlbinlog_start_stop.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_implicit_commit.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_crash_safe_master_checksum.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_truncate_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_mysqlbinlog_row.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_start_stop.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_innodb_row.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_mysqlbinlog_verbose.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_statement_insert_delayed.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_enforce_gtid_consistency.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_max_extension.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_do_db-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_variables_log_bin_index-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_binlog-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_errors.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/disabled.def
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_database.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_server_start_options.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_simple_recovery.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_mix_innodb_myisam-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_simplified_binlog_gtid_recovery-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_crash_safe_master_checksum-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_row_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_filter.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_variables_log_bin.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_errors-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_killed_simulate.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_spurious_ddl_errors-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_stm_innodb_stat-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_incident-master.opt
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_mysqlbinlog_row_myisam.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_ctype_cp932.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_gtid_utils.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_row_mysqlbinlog_db_filter.test
-- Installing: /mysql/software/mysql-test/./suite/binlog/t/binlog_hexdump.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_ews_by_user_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_account.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_global_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/selects.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esgs_by_thread_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/connection_3a_3u.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ortho_iter.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_ssl.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_host_cache.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_socket_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_statements_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/sizing_low.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_setup_instruments.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_ews_by_user_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_addrinfo_bad_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_cond_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/csv_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/binlog_ok_stmt.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_os_global_by_type.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/aggregate.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_auth_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esgs_by_host_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_performance_timers.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/short_option_2.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_low_digest.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_fs_by_instance.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_socket_summary_by_instance.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/query_cache.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_thread_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_handler.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_stages_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_ssl.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/statement_digest_consumers2.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_global_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/setup_objects.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_blocked.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_on.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_tlws_by_table.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/one_thread_per_con.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/sizing_off.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esgs_by_user_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_setup_instruments.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_thread_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_off.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_ews_by_thread_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/bad_option_3.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_thread_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/rollback_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_fs_by_instance.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_mutex_class.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_waits_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_statements_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_format.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esms_by_user_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_hist_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_stages_current.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_setup_objects.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_ews_global_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_ews_by_thread_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_global_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_host.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_waits_current.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esms_by_digest.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_file_class.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_statements_current.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_nameinfo_again_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_global_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/bad_option_5.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esms_by_thread_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/checksum.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_setup_objects.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_global_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_addrinfo_good_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_ews_by_account_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/socket_summary_by_event_name_func.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/binlog_edge_row.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_setup_actors.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_hist_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/rpl_statements.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_passwd.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_hist_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_socket_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_table_hdl.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_host_cache.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_hist_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_hist_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/merge_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/setup_consumers_defaults.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/bad_option_4.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_tiws_by_table.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/socket_summary_by_instance_func_win.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/binlog_ok_row.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_file_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esms_by_host_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esgs_by_user_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_stages_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_ews_by_account_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_ews_by_instance.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_session_connect_attrs.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/misc.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/sizing_med.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_hosts.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_statements_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_addrinfo_noname_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_hist_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_tlws_by_table.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_off.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_mutex_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_setup_consumers.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/privilege.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/sizing_default.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/event_aggregate_no_u.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_cond_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/digest_table_full.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/event_aggregate_no_a_no_h.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_hist_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_stages_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/bad_option_1.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/event_aggregate_no_u_no_h.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_stages_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_passwd.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/rpl_gtid_func.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_mutex_inst.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_hist_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_socket_summary_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/threads_innodb.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_addrinfo_noname_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_thread_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/event_aggregate_no_a_no_u_no_h.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/func_mutex.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/relaylog.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/global_read_lock.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_cond_inst.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_setup_timers.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/information_schema.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_blocked.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/connection.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/trigger_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/socket_instances_func_win.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/part_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esms_by_host_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_addrinfo_again_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/threads_mysql.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/socket_instances_func.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/connection_3a.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/sizing_growth.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_thread_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/binlog_edge_mix.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_socket_inst.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_nameinfo_again_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/bad_option_2.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_nameinfo_noname_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/server_init.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/stage_mdl_table.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_thread_inst.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esgs_by_host_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_ews_by_host_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_addrinfo_again_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_nameinfo_noname_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_nameinfo_again_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/all_tests.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_stages_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esgs_by_thread_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_session_account_connect_attrs.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/statement_digest_charset.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/pfs_upgrade_view.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esms_global_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_disable_statements.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/pfs_upgrade_table.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/tampered_perfschema_table1.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_setup_actors.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_nothing.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_global_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/stage_mdl_function.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_global_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_accounts.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_addrinfo_again_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_nameinfo_noname_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_addrinfo_good_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_accounts.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/view_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/threads_insert_delayed.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esgs_global_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/connect_attrs.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/event_aggregate.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_setup_actors.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_global_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esms_by_account_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_global_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_socket_summary_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_threads.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_global_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/statement_digest_long_query.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/privilege_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_users.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/read_only.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_ews_global_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_setup_consumers.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_thread_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_hist_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_user.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/stage_mdl_global.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/pfs_upgrade_func.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_disable_waits.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/schema.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/statement_digest.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_thread_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_disable_idle.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/temp_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_thread_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_rwlock_inst.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_file_inst.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esms_global_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/multi_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_addrinfo_bad_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_hosts.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_users.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_thread_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_max_con.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/column_privilege.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_global_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/event_aggregate_no_h.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_waits_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_setup_objects.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/event_aggregate_no_a_no_u.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/socket_summary_by_instance_func.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_file_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/myisam_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_threads.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/unary_digest.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esms_by_digest.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_digests.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_thread_class.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_ews_by_instance.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/innodb_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_addrinfo_noname_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_waits_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/no_threads.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_io_aggregate_hist_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_rwlock_class.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_addrinfo_bad_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_thread_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_waits_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/func_file_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esgs_global_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_thread_2u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_hist_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esms_by_thread_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_statements_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/setup_actors.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_aggregate_thread_4u_3t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_os_global_by_type.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_waits_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_socket_class.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esgs_by_account_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_statements_current.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/short_option_1.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/memory_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_addrinfo_good_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esms_by_user_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_fs_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/setup_instruments_defaults.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_ews_by_host_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_tiws_by_index_usage.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_max_con.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_fs_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_session_account_connect_attrs.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/thread_cache.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_esms_by_account_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_rwlock_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_nameinfo_again_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/connection_3u.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/sizing_high.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_addrinfo_noname_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/stage_mdl_procedure.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_tiws_by_index_usage.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_auth_plugin.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/socket_connect.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_schema.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_session_connect_attrs.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_cond_class.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_waits_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_global_4u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/statement_digest_consumers.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_statements_history_long.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_statements_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_addrinfo_good_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_disable_stages.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_socket_summary_by_instance.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_stage_class.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/table_lock_aggregate_hist_2u_2t.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_addrinfo_again_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv4_nameinfo_noname_deny.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/event_aggregate_no_a.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_mutex_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_esgs_by_account_by_event_name.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/digest_null_literal.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/cnf_option.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_events_stages_history.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/dml_performance_timers.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/myisam_file_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/pfs_upgrade_event.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_setup_timers.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_waits_current.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_ipv6_addrinfo_bad_allow.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_tiws_by_table.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_table_inst.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_rwlock_instances.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/nesting.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/start_server_no_statement_class.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/indexed_table_io.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/ddl_events_stages_current.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/hostcache_peer_addr.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/binlog_edge_stmt.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/binlog_ok_mix.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/r/pfs_upgrade_proc.result
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/socket_instances_func_win-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_events_stages_current.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_global_2u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_hosts.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/statement_digest_long_query.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_esms_by_digest.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/event_aggregate_no_a_no_u_no_h.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/socket_instances_func-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_session_account_connect_attrs.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/binlog_edge_mix-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_io_aggregate_hist_2u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_ews_by_instance.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/connect_attrs.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/event_aggregate_no_a_no_h-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/myisam_file_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_socket_inst-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/relaylog-slave.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_off-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_io_aggregate_hist_2u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_nameinfo_again_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_ssl-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/pfs_upgrade_table.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_nameinfo_noname_deny-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_table_hdl-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/event_aggregate_no_u-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_stages_history_long.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_blocked.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_table_inst-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_addrinfo_good_allow.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/pfs_upgrade_event.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/stage_mdl_global.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_socket_instances.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_again_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/myisam_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/privilege.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/sizing_growth.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/binlog_edge_stmt.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_good_allow.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_io_aggregate_thread_4u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/event_aggregate_no_h.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_setup_objects.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/socket_instances_func.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/statement_digest.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_mutex_instances.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_peer_addr.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_ews_by_host_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/rpl_statements-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_user-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/cnf_option.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/statement_digest_consumers.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_waits_history-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_nameinfo_noname_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/tampered_perfschema_table1.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/thread_cache.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_blocked-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_stage_class-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_digests-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esgs_by_host_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/sizing_low.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_ews_by_account_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/bad_option_2.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_events_statements_current.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_low_digest.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/rpl_statements.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_cond_instances.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_thread_class.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_threads.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/digest_null_literal.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_ews_by_account_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_events_statements_history.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_thread_2u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/binlog_ok_row.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_hist_4u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_nameinfo_again_allow-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_disable_statements-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_nameinfo_again_deny-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_waits_history_long-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/connection_3a.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_fs_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/statement_digest_long_query-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/short_option_2-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esgs_global_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/event_aggregate_no_u.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_nothing-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_file_class.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esms_by_thread_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/event_aggregate.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_stages_history.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_ews_global_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_setup_objects.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_mutex_class.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_esgs_global_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/stage_mdl_table.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_rwlock_class-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/cnf_option.cnf
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/csv_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/sizing_med.cnf
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_ews_by_instance.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_setup_objects.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_passwd-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/sizing_off.cnf
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_tlws_by_table.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_esms_global_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esms_by_account_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_statements_history_long.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/pfs_upgrade_view.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_socket_summary_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_socket_summary_by_instance.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_host_cache.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_good_allow-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/privilege_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/socket_summary_by_instance_func.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/myisam_file_io.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/bad_option_5.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_thread_inst.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_addrinfo_again_allow.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_nameinfo_again_allow.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_max_con.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_blocked.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/aggregate.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_nameinfo_again_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/binlog_ok_mix.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_host.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_events_waits_history.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/threads_insert_delayed.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_lock_aggregate_global_2u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/connection_3a-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/checksum.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_lock_aggregate_hist_2u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_statements_history-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/func_mutex.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/one_thread_per_con-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/setup_instruments_defaults-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_socket_class-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_noname_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/merge_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_max_con-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_tiws_by_table.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esms_by_digest.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esgs_by_user_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_setup_timers.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esms_by_host_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_disable_stages.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_host-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_innodb.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_fs_by_instance.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/relaylog.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_ssl.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_thread_4u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/trigger_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/bad_option_1.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_io_aggregate_hist_4u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_events_stages_history_long.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_lock_aggregate_thread_2u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/setup_instruments_defaults.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_global_4u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/sizing_default.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/digest_table_full.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/bad_option_3.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_lock_aggregate_hist_4u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_hist_2u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/part_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_again_deny-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/connection_3u-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_setup_consumers.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_addrinfo_bad_allow.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/binlog_edge_mix.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_file_inst-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_lock_aggregate_hist_4u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/view_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_off.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/binlog_edge_stmt-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_thread_4u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esgs_by_thread_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/pfs_upgrade_func.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/statement_digest_consumers-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_nameinfo_noname_allow-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_io_aggregate_thread_2u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/global_read_lock.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_io_aggregate_thread_2u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/stage_mdl_procedure.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_events_waits_history_long.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/binlog_ok_stmt.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/event_aggregate_no_a_no_u_no_h-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_socket_summary_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_session_account_connect_attrs.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_events_statements_current.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_innodb-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_esms_by_thread_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/digest_table_full-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_cond_inst.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_rwlock_inst.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_thread_inst-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/pfs_upgrade_proc.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/statement_digest_consumers2-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/selects.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_table_hdl.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_rwlock_instances.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_format.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_noname_allow.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/memory_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_ews_global_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_nameinfo_again_allow.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/temp_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_auth_plugin.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_events_waits_history.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_addrinfo_again_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_good_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_lock_aggregate_global_4u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_bad_deny-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_disable_idle.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_lock_aggregate_global_2u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_passwd.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_users.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/sizing_default.cnf
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/socket_summary_by_instance_func_win.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_file_instances.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_io_aggregate_global_2u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_lock_aggregate_hist_2u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_bad_allow-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_thread_2u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/setup_consumers_defaults-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/selects-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv6_addrinfo_noname_deny-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/column_privilege.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_events_waits_history_long.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_ews_by_thread_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_addrinfo_bad_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/rpl_gtid_func.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/sizing_low.cnf
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_events_waits_current.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_events_stages_history.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_events_stages_history.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_mutex_inst.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_setup_instruments.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_threads.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/hostcache_ipv4_addrinfo_noname_deny.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_global_2u_2t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/table_aggregate_hist_4u_3t.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/innodb_table_io.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/start_server_no_file_class-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/ddl_esms_global_by_event_name.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/sizing_growth-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/binlog_edge_row-master.opt
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/dml_file_instances.test
-- Installing: /mysql/software/mysql-test/./suite/perfschema/t/statement_digest_consumers2.test
-- Installing: /mysql/software/mys

你可能感兴趣的:(MYSQL)