autopilot: detect missing run script with timestamps

This commit is contained in:
Christian Helmuth 2014-10-15 12:19:33 +02:00
parent 35239b84df
commit 6e166d01bb
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ proc build_failed_because_of_missing_run_script { platform run_script } {
# grep log output for the respective error message of the build system
if {[catch {
exec grep "^Error: No run script for" [log_file $platform $run_script]
exec grep {^\(\[....-..-.. ..:..:..] \)*Error: No run script for} [log_file $platform $run_script]
}]} { return 0 }
return 1
}