Francois Gouget : testbot/LogUtils: The exception codes are always 32 bit.

Alexandre Julliard julliard at winehq.org
Fri Feb 21 14:20:00 CST 2020


Module: tools
Branch: master
Commit: c80db6335fb2383cec0c49e875bbff231619c857
URL:    https://source.winehq.org/git/tools.git/?a=commit;h=c80db6335fb2383cec0c49e875bbff231619c857

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Fri Feb 21 03:01:04 2020 +0100

testbot/LogUtils: The exception codes are always 32 bit.

Only the addresses may be 64 bit.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 testbot/lib/WineTestBot/LogUtils.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testbot/lib/WineTestBot/LogUtils.pm b/testbot/lib/WineTestBot/LogUtils.pm
index 2d4e4ee..734d322 100644
--- a/testbot/lib/WineTestBot/LogUtils.pm
+++ b/testbot/lib/WineTestBot/LogUtils.pm
@@ -1045,7 +1045,7 @@ sub _GetLineKey($)
   # Remove the crash code address: it changes whenever the test is recompiled
   $Line =~ s/^(Unhandled exception: .* code) \(0x[0-9a-fA-F]{8,16}\)\.$/$1/;
   # and the process id
-  $Line =~ s/^[0-9a-f]+:([_a-z0-9]+: unhandled exception [0-9a-fA-F]{8,16} at )[0-9a-fA-F]{8,16}$/$1/;
+  $Line =~ s/^[0-9a-f]+:([_a-z0-9]+: unhandled exception [0-9a-fA-F]{8} at )[0-9a-fA-F]{8,16}$/$1/;
 
   # The exact amount of data printed does not change the error
   $Line =~ s/^([_.a-z0-9-]+:[_a-z0-9]* prints too much data )\(\d+ bytes\)$/$1/;




More information about the wine-cvs mailing list