Add the precise_sleep() function to the test suite

This commit is contained in:
Jonathan Bennett 2016-05-03 10:46:23 -05:00
parent 58bce15b1e
commit afe1cd47b0

View File

@ -1268,6 +1268,11 @@ sub run_test() {
return;
}
sub precise_sleep {
my ($sleeptime) = @_;
select(undef, undef, undef, $sleeptime);
}
sub get_msg() {
my $test_hr = shift;