Module: tools Branch: master Commit: 6458084c9b92634a68aeea8c4b72af65f88c9b26 URL: http://source.winehq.org/git/tools.git/?a=commit;h=6458084c9b92634a68aeea8c4...
Author: Alexandre Julliard julliard@winehq.org Date: Fri May 30 20:20:42 2008 +0200
winetest: Ignore unrecognized lines in the report instead of dying.
---
winetest/dissect | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/winetest/dissect b/winetest/dissect index 8a46e27..9925d35 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -172,7 +172,7 @@ while (<IN>) { if (!defined $dll) { # new test next if /^\s*$/; m[([_.a-z0-9]+):([_a-z0-9]+) start ([/_.a-z0-9]+) (-|[.0-9a-f]+)\r?$] - or mydie "no start line:$.: $_"; + or next; ($dll,$unit,$source,$rev) = ($1,$2,$3,$4); open OUT, ">:raw", $tmpfile or mydie "unable to open '$tmpfile' for writing: $!\n"; print OUT;