Module: tools Branch: master Commit: f31527596749f902b096eea8bc9339f39f7ab259 URL: http://source.winehq.org/git/tools.git/?a=commit;h=f31527596749f902b096eea8b...
Author: Jeremy White jwhite@codeweavers.com Date: Tue Feb 5 10:28:23 2008 -0600
winetest: Modified to allow git style versioning (e.g. sha1 id) in the test 'start' lines.
---
winetest/dissect | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/winetest/dissect b/winetest/dissect index 61024cd..6293c1c 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -172,7 +172,7 @@ $lines = 0; while (<IN>) { if (!defined $dll) { # new test next if /^\s*$/; - m[([_.a-z0-9]+):([_a-z0-9]+) start ([/_.a-z0-9]+) (-|[.0-9]+)\r?$] + m[([_.a-z0-9]+):([_a-z0-9]+) start ([/_.a-z0-9]+) (-|[.0-9a-f]+)\r?$] or mydie "no start line:$.: $_"; ($dll,$unit,$source,$rev) = ($1,$2,$3,$4); open OUT, ">:raw", $tmpfile or mydie "unable to open '$tmpfile' for writing: $!\n";