Zebediah Figura : winetest: Allow hyphens in test filenames.
Module: tools Branch: master Commit: 0d7e1f53e53163cdf6fed24eb177203a810a1cda URL: https://source.winehq.org/git/tools.git/?a=commit;h=0d7e1f53e53163cdf6fed24e... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Sun Jun 24 11:54:14 2018 -0500 winetest: Allow hyphens in test filenames. For vulkan-1:vulkan. Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- winetest/dissect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winetest/dissect b/winetest/dissect index 7416317..4db4f85 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -583,7 +583,7 @@ while ($line = <IN>) { next if ($line =~ /^\s*$/); chomp $line; $line =~ s/\r+$//; - if ($line =~ m%^([_.a-z0-9-]+):([_a-z0-9]+) (start|skipped) (-|[/_.a-z0-9]+) (-|[.0-9a-f]+)\r?$%) + if ($line =~ m%^([_.a-z0-9-]+):([_a-z0-9]+) (start|skipped) (-|[/_.a-z0-9-]+) (-|[.0-9a-f]+)\r?$%) { my ($l_dll, $l_unit, $l_type, $l_source, $l_rev) = ($1, $2, $3, $4, $5);
participants (1)
-
Alexandre Julliard