The function get_suite_from_file()in the drive_testrunner.php is still using the VERY deprecated ereg_replace function, this can quickly be resolved with preg_replace().
Please if only to keep distributed code free of notices, and warnings!
$file_fs = preg_replace('#\\\\#', '/', $file);
thats it!
regards,