mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.3 into 10.4
In main.index_merge_myisam we remove the test that was added in commita2d24def8c
because it duplicates the test case that was added in commit5af12e4635
.
This commit is contained in:
18
mysql-test/include/wait_for_line_count_in_file.inc
Normal file
18
mysql-test/include/wait_for_line_count_in_file.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
perl;
|
||||
use strict;
|
||||
use Time::HiRes qw(sleep);
|
||||
my $search_count= $ENV{'SEARCH_COUNT'} or die "SEARCH_COUNT not set";
|
||||
my $search_file= $ENV{'SEARCH_FILE'} or die "SEARCH_FILE not set";
|
||||
my $wait_counter= 100; # 10 seconds
|
||||
while (1)
|
||||
{
|
||||
my $cnt= 0;
|
||||
open(FILE, $search_file) or die("Unable to open '$search_file': $!\n");
|
||||
$cnt++ while (<FILE>);
|
||||
close(FILE);
|
||||
last if ($cnt == $search_count);
|
||||
$wait_counter-- or
|
||||
die "Timeout waiting for $search_count lines in $search_file\n";
|
||||
sleep(0.1);
|
||||
}
|
||||
EOF
|
Reference in New Issue
Block a user