summaryrefslogtreecommitdiff
path: root/mysql-test/include/wait_for_line_count_in_file.inc
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/include/wait_for_line_count_in_file.inc')
-rw-r--r--mysql-test/include/wait_for_line_count_in_file.inc18
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/include/wait_for_line_count_in_file.inc b/mysql-test/include/wait_for_line_count_in_file.inc
new file mode 100644
index 00000000000..838a3ff342b
--- /dev/null
+++ b/mysql-test/include/wait_for_line_count_in_file.inc
@@ -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