config root man

Current Path : /home/usr.opt/mysql57/mysql-test/include/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/include/wait_condition_or_abort.inc

# include/wait_condition_or-abort.inc
#
# SUMMARY
#    Waits until the passed statement returns true, or the operation
#    times out and test case breaks.
#    This is wrapper for wait_condition.inc.
#
# USAGE
#
#    let $wait_condition=
#      SELECT c = 3 FROM t;
#    --source include/wait_condition_or_abort.inc
#
#   OR
#
#    let $show_rpl_debug_info= 1; # to force post-failure printout
#    let $wait_timeout= 60; # Override default 30 seconds with 60.
#    let $wait_condition=
#      SELECT c = 3 FROM t;
#    --source include/wait_condition_or_abort.inc
#    --echo Executed the test condition $wait_condition_reps times
#

--source include/wait_condition.inc

if (!$success)
{
  if ($show_rpl_debug_info)
  {
    --source include/show_rpl_debug_info.inc
  }
  die;
}

Man Man