Troublesome test units: grep -h -v -P '^(#| +[0-9])' failures-mr.txt | sed -n '/week 03-13$/,/week 12-19$/p' | grep -E -v '[-]> fixed' | sed -e 's/[^a-z0-9:._]/\n/g' | grep -E '[a-z0-9]:[a-z0-9]' | sort | uniq -c | sort -n -r # or to filter on days instead of weeks sed -n '/^12-16/,/^12-12/p' | # or to exclude already diagnosed / filtered out issues sed -e 's/[a-z][a-z0-9:._]*:[a-z][a-z0-9:._]* ->.*//g' | # or to exclude fixed issues sed -e 's/[a-z][a-z0-9:._]*:[a-z][a-z0-9:._]* -> fixed.*//g' | # or to exclude the GitLab CI failures sed -e 's/([^)]*)//g' | # or to keep only the GitLab CI failures sed -e 's/^.*[(]\([^)]*\)[)].*$/\1/' -e t -e d | # Bugs causing false positives # <...> main grep, time period and TestBot/GitLab CI filters go here sed -e 's/^.. [0-9]*//' -e 's/^ *(*//' -e 's/new //' | sed -e 's/\([a-z][a-z0-9:._]*:[a-z][a-z0-9:._]* -> bug [0-9]*\).*$/\1/' -e t -e d | sort | uniq -c | sort -n -r # Troublesome test units with bugs # <...> main grep, time period and TestBot/GitLab CI filters go here # replace -> with [-=]> in 2 places to keep => information too sed -e 's/^.. [0-9]*//' -e 's/ \(->\)/\1/' -e 's/new //' -e 's/[)].*//' -e 's/\([a-z][a-z0-9:._]*:[a-z][a-z0-9:._]* \)/\1\n/g' | sed -e 's/^ *[^a-z]*//' | grep -E '[a-z0-9]:[a-z0-9]' | sed -e 's/\(->\)/ \1/' -e '/-> fixed/ d' | sort | uniq -c | sort -n -r TestBot false positive rate and more: for t in "[.]" "N" "F" "B" "D" "O" "E" "S" "[?]" "."; do count=`sed -n '/week 03-06$/,/week 01-30$/p' failures-mr.txt | grep -E -i "^$t. [0-9][0-9][0-9]" | wc -l`; [ $count -ne 0 ] && echo " $t -> $count"; done GitLab CI false positive rate and more: for t in "[.]" "N" "F" "B" "D" "O" "E" "S" "[?]" "."; do count=`sed -n '/week 12-02$/,/week 11-28$/p' failures-mr.txt | grep -E -i "^.$t [0-9][0-9][0-9]" | wc -l`; [ $count -ne 0 ] && echo " $t -> $count"; done # All open bug numbers sed -e 's/fixed bug//' -e 's/\(bug [0-9][0-9]*\)/\n\1\n/g' | sed -e 's/^bug //' -e t -e d | sort -u For importing in spreadsheets: (p=99-99; for d in `sed -e 's/ ---.*//' failures-mr.txt | grep -E '^[0-9][0-9]-[0-9][0-9]$'` ; do echo -n "2023-$p,"; for t in "[.]" "N" "F" "B" "D" "O" "E" "S" "[?]" "."; do count=`sed -n "/^$p/,/^$d/p" failures-mr.txt | grep -E -i "^$t. [0-9][0-9][0-9]" | wc -l`; echo -n "$count,"; done; p=$d; echo; done) | sed -e 's/2023-1/2022-1/' | tac # One character classification codes: # . Success # The CI found no failure attributable to the MR. # N False negative # An MR that got merged and broke a test with no advance warning of the CI. # F False positive # Identifies cases where the CI system incorrectly claimed the MR introduces # new failures. This is typically the case when the failures that are already # present in nightly WineTest results. # B Bad merge # Identifies MRs that break a test and got merged anyway. Whether an MR is # F or B is mostly determined after the fact. # D Collateral Damage from a bad merge # This identifies the false positives (aka collateral damage) caused by one # of the bad merges above. # O Massive outside interference # This is not an intermittent false positive intrinsic to the test, but a # failure resulting from a change outside the Wine infrastructure, such as # when the configuration of a server used for the tests changes and breaks the # tests that depend on it. # E BotError # An internal CI bug. Mostly relevant for TestBot results. # S Patch series mixup # Cases where it looks like the TestBot mixed up two patch series, resulting # in a patch that cannot be applied and thus no actual test results. # ? Status to be determined # # A merge request may have more than one type of failure. In that case the # priority order is: B N F D O E S ? 03-17 --- week 03-13 03-14 .. 2398 .f 2396 (dinput:device8 => massive timeouts) .. 2379 .. 2375 .. 2376 .f 2355 (dinput:device8 -> bug 54594) .. 2345 .. 2393 .. 2400 .f 2399 (dinput:device8 -> bug 54594) (ntdll:file => CallerAvailableAllocationUnits error) .. 2395 f. 2353 linux:build => slightly out-of-date tree .. 2360 .. 2389 03-13 .. 2392 .f 2391 (mf:mf => timeout) .. 2369 .. 2384 .. 2388 .. 2381 .. 2372 .f 2370 (dinput:device8 -> bug 54594) .. 2352 03-10 --- week 03-06 f. 2368 shell32:progman_dde => DMLERR_NO_ERROR vs 16393 .f 2364 (dinput:device8 -> bug 54594) .f 2365 (mmdevapi:render -> bug 54140) .f 2366 (dinput:device8 => massive timeouts + bug 54594) (user32:msg -> bug 54037) .f 1964 (dinput:device8 -> bug 54594) 03-09 B. 2361 kernel32:loader -> bug 54657 .. 2356 .. 2357 .f 2358 (ole32:clipboard -> bug 54005) (ws2_32:sock -> bug 54073) .. 2354 .f 2296 (user32:msg -> bug 54407) .. 2336 f. 2217 ddraw:ddraw4 => WM_KILLFOCUS not received ddraw:ddraw7 => WM_KILLFOCUS not received + Lit quad with light d3d8:device -> new bug 54659 d3d9:device -> new bug 54659 03-08 .f 2351 (dinput:device8 -> bug 54594) f. 2252 dbghelp:dbghelp -> bug 54504 : 54536 + 54537 ntdll:exception => unexpected p / wrong frame psapi:psapi_main => image size was 0 bug 54507 on w864 .f 2316 (dxgi:dxgi => bad window rect 332,200 vs. 400,200) (explorer.exe:explorer => got 904,0-1024,768) (gdi32:metafile => todo success SetWinMetaFileBits MM_ANISOTROPIC) (kernel32:console => got 16, expected 10) (quartz:videorenderer => Got width 332) (quartz:vmr7 => Got width 332) (quartz:vmr9 => Got width 332) (user32:dce => clip box = 50,32) (user32:input => bad cursor position pos 300x239) (user32:msg => ShowWindow SW_MAXIMIZE) (user32:sysparams => wrong clip box 128,64) (user32:win => color 0xc0c0c0 vs 0xffffffff) (ws2_32:afd -> bug 54113) f. 2334 user32:input -> new bug 54651 .. 2347 .. 2221 .. 2341 .. 2337 .. 2326 .. 2320 03-07 .. 2292 .. 2339 .. 2338 .. 2344 .f 2340 (user32:msg -> bug 54407) .. 2335 .. 2333 .. 2331 03-06 .. 2322 .f 2303 (dinput:device8 -> bug 54594) .. 2332 .. 1543 .f 2328 (ddraw:ddraw7 => state 0x887600e1 on message 0x46) (ole32:clipboard -> bug 54005) .f 2323 (dinput:device8 -> bug 54594) .. 2329 .f 2327 (user32:menu -> bug 53188) (ws2_32:sock -> bug 54073) .. 2324 03-03 --- week 02-27 .. 2321 .. 2319 .. 2318 .. 2315 .. 2317 03-02 .. 1892 f. 2309 ddraw:ddraw1 => WM_KILLFOCUS not received ddraw:ddraw2 => WM_KILLFOCUS not received ddraw:ddraw7 => Failed to set foreground window .f 2310 (ddraw:ddraw1 => screen size 320x240) (user32:menu -> bug 53188) (user32:msg -> bug 54037) .. 2313 .. 2282 .. 2302 .. 2153 .. 2304 03-01 .. 2256 f. 2098 mshtml:dom => crash c0000374 .. 2308 .. 2307 .. 2033 .. 2046 .. 2304 02-28 .f 2300 (dinput:device8 -> new bug 54594) ff 2297 dinput:device8 => many failures (dinput:device8 -> new bug 54594) .f 2301 (user32:msg -> bug 54037) (user32:win => bad active window) .. 2016 .. 1377 .. 2257 .. 2279 .. 2276 .. 2290 .. 2295 02-27 .f 2133 (dinput:device8 -> new bug 54594) .. 2269 .. 2294 .f 2262 (cryptowinrt:crypto => got ref 3/2) .. 2293 .f 2285 (dinput:device8 => many timeouts) .f 2268 (dinput:device8 -> new bug 54594) .f 2288 (dinput:device8 -> new bug 54594) .. 2289 .. 2287 .f 2286 (ntdll:threadpool -> bug 54064) .. 2284 .f 2270 (dxgi:dxgi => monitor rect 800,600) (explorer.exe:explorer => got 904,0-1024,768) (mmdevapi:render -> bug 54140) 02-24 --- week 02-20 .. 2280 .. 2278 f. 2277 winmm:midi => expected 50ms, got 106ms .. 2273 .. 2272 .f 2253 (wmvcore:wmvcore -> bug 54039) .. 2263 .. 2271 .f 2265 (dinput:device8 -> new bug 54594) 02-23 .. 2114 .f 1714 (dinput:device8 -> new bug 54594) .f 2267 (ole32:clipboard -> bug 54005) .f 2264 (user32:msg => wrong status 00000000) .. 2010 02-22 .f 2254 (dinput:device8 -> new bug 54594) .. 2250 .f 2242 ff 2247 mf:transform => invalid h264 (user32:msg -> bug 54037) .. 2259 .. 2255 .f 2248 (user32:msg -> bug 54037) .. 2237 f. 1628 d3d11:d3d11 -> bug 54510 02-21 ff 2192 d3d11:d3d11 -> new bug 54510 (wmvcore:wmvcore -> 54042) .. 2251 .. 2226 .f 1889 (kernel32:heap -> bug 54498) (mfplay:mfplay -> bug 54600) .. 2244 .. 2215 .. 2235 02-20 .. 2236 .f 2239 (ws2_32:afd -> bug 54113) .. 2238 .f 2185 (dinput:device8 -> new bug 54594) .. 2224 .. 2233 .. 2234 .. 2225 02-17 --- week 02-13 .f 2086 (ntdll:threadpool -> bug 54064) .f 2116 (mfplay:mfplay -> bug 54600) .f 2182 (ws2_32:afd -> bug 54113) f. 2195 d3d11:d3d11 -> new bug 54510 .. 2220 f. 2189 mf:transform => invalid h264 winhttp:notification => status 0x8 vs 0x200000, no timeout .. 2177 .. 2223 .f 2144 (dinput:device8 => many timeouts) .. 2222 .. 2232 02-16 f. 2190 d3d11:d3d11 -> new bug 54510 .. 2214 f. 2158 d3d11:d3d11 -> new bug 54510 .f 2219 (ntdll:threadpool -> bug 54064) ff 2212 riched20:editor -> new bug 54494 + 54497 (dxgi:dxgi => monitor rect 800,600) (explorer.exe:explorer => got 904,0-1024,768) .. 2211 .. 2218 .. 2216 .. 2136 .. 2209 02-15 .. 2186 f. 2210 d3d11:d3d11 -> new bug 54510 f. 2208 d3d11:d3d11 -> new bug 54510 .f 2188 (mfplay:mfplay -> bug 54600) f. 2207 d3d11:d3d11 -> new bug 54510 .f 2196 kernel32:heap -> bug 54498 .. 2162 f. 2191 d3d11:d3d11 -> new bug 54510 .f 2194 (wmvcore:wmvcore -> bug 54042) .. 2193 .. 2175 02-14 .. 2176 .. 2145 .. 2187 .. 2108 .. 2107 .f 821 (user32:msg -> bug 54037) .. 2072 .. 2169 .f 2181 (ntdll:threadpool -> bug 54064) .. 2184 .. 2178 .. 2179 .. 1963 .. 2180 .f 2174 (ntdll:threadpool -> bug 54064) 02-13 .. 2138 .. 2139 .. 2064 .. 269 .. 2123 .. 2172 .. 2171 .. 2166 .. 2170 .f 2160 (ntdll:threadpool -> bug 54064) .. 2167 .f 2015 (ntdll:threadpool -> bug 54064) .. 2165 .. 2164 .. 2163 .. 2161 .. 2088 02-10 --- week 02-06 .. 2012 .f 2103 (user32:win -> bug 53206) (user32:msg -> bug 54037) .. 2156 .f 2152 (ntdll:threadpool -> bug 54064) .f 2140 (mmdevapi:render -> bug 54140) .. 2155 B. 2154 user32:msg -> fixed bug 54477 .f 2045 (user32:msg -> bug 54407) .. 2148 02-09 .f 2141 (ole32:clipboard -> bug 54005) .. 2142 .f 2143 (shell32:shelllink -> bug 54061) .. 2151 .. 2011 f. 2147 dmusic:dmusic => timeout 02-08 .. 2137 .. 2130 .f 2134 (urlmon:url => timeout on exit) .f 2132 (mfplay:mfplay -> bug 54600) .f 2131 (user32:msg => wrong status 00000000) .f 2135 (wmvcore:wmvcore -> bug 54042) f. 1974 rpcrt4:rpc => timeout .. 2129 .. 2128 .. 1800 .f 2073 (mmdevapi:render -> bug 54140) 02-07 .. 2113 .. 2117 .. 1937 .. 2076 .. 2121 .. 2119 .. 2111 .. 2112 f. 2080 user32:msg -> bug 54407 f. 1925 mfplat:mfplat => WaitForSingleObject 0x102 .. 2102 02-06 .f 2078 (kernel32:heap -> new bug 54498) (mmdevapi:render -> 54140) (user32:msg -> bug 54037) .f 2109 (ntdll:threadpool -> bug 54064) .. 2115 .. 2110 .. 2099 .f 1268 (qasf:asfreader -> bug 54334) .f 2028 (ntdll:change -> bug 53533) .. 2104 02-03 --- week 01-30 02-02 .. 2097 .. 2092 .. 2095 .. 1775 .. 2096 .f 2094 (kernel32:heap -> new bug 54498) .. 2087 f. 2089 kernel32:process => STATUS_ACCESS_DENIED vs 00000000 .. 2090 02-01 .f 2069 (ole32:clipboard -> bug 54005) .. 2083 .f 2036 (build:mac -> fixed) .. 2084 .. 2077 .. 1637 .f 1586 (mshtml:misc -> bug 54152) .. 1584 .. 2074 01-31 .. 2079 .. 1844 .. 2075 .. 2070 .. 2071 .. 2057 01-30 .. 2061 .f 2063 (user32:win -> bug 53206) (ws2_32:sock -> bug 54073) .. 2051 .. 2065 .. 2066 .. 2060 .. 2058 .. 2055 .. 2056 .. 2050 .. 2052 01-27 --- week 01-23 01-26 .f 2043 (build:mac -> fixed) .f 1686 (build:mac -> fixed) .f 2042 (build:mac -> fixed) .. 1918 .f 2040 (build:mac -> fixed) ff 2039 ntoskrnl.exe:ntoskrnl -> new bug 54411 (build:mac -> fixed) ff 2024 mshtml:misc -> new bug 54415 (build:mac -> fixed) .. 1801 .f 1762 (build:mac -> fixed) .f 2031 (build:mac -> fixed) .f 2037 (build:mac -> fixed) .. 1578 .. 1787 .. 1786 .f 1997 (ws2_32:afd -> bug 54113) (ws2_32:sock -> bug 54074) .. 2035 .f 2034 (build:mac -> fixed) .. 2023 01-25 .. 2026 .f 2021 (ntdll:threadpool -> bug 54064) .. 2020 .. 2022 .. 2025 .f 2009 (ntdll:threadpool -> bug 54064) .. 1972 .. 2014 .. 2019 .. 2018 .. 2013 .. 1877 .. 1867 .. 1798 .. 1781 .. 1780 .. 1779 .. 1777 .. 1788 .. 1795 .. 1782 .. 1785 .. 1784 .. 1783 .. 1790 01-24 f. 2008 ddraw:ddraw1 => WM_KILLFOCUS not received ddraw:ddraw4 => WM_ACTIVATEAPP not received ddraw:ddraw7 => WM_KILLFOCUS not received .f 1912 (shell32:shelllink -> bug 54061) .. 1914 .. 1954 .f 1939 (mshtml:misc => getItem failed: 80004005) .. 1998 .f 1999 (mf:mf => WaitForSingleObject timeout) .f 1900 (user32:msg => 0x000f was expected, but got msg 0x0021) .. 1992 .. 2005 .. 1986 .. 1993 .. 729 f. 1778 user32:win => should not be topmost, old, ignore .f 1913 (mshtml:misc => get_length failed 80004005) .. 1834 .. 1797 .. 1806 .f 1799 (winhttp:notification -> fixed bug 54098) .. 1662 .. 1903 .. 1943 f. 1960 ntoskrnl.exe:driver_pnp => "1 remove events", ignore .. 2007 .. 2006 .. 1894 .f 2001 (user32:win -> bug 53206) .. 1894 .. 2003 .. 1996 .. 1994 .f 2004 (ws2_32:afd -> bug 54113) 01-20 --- week 01-16 .. 1990 .f 1991 (ole32:clipboard -> bug 54005) (ws2_32:afd -> bug 54113) .. 1967 01-19 ff 1978 wmvcore:wmvcore -> new bug 54398 (urlmon:protocol -> bug 54080) .. 1983 .. 1985 01-18 .. 1961 .. 1980 .. 1966 .. 1976 01-16 .f 1973 (ntdll:threadpool -> bug 54064) .. 1970 f. 1949 user32:input -> bug 54323 01-13 --- week 01-09 .. 1953 .f 1940 (ntdll:threadpool => info.userdata) .. 1957 .. 1944 .f 1955 (ntdll:threadpool -> bug 54064) .. 1962 .. 1951 .. 1952 .. 1958 .. 1959 .f 1956 (ws2_32:sock -> bug 54073) 01-12 .. 1947 .. 1946 .. 1942 .. 1941 01-11 f. 1931 windows.media.speech:speech => Wait for block_thread failed ff 1932 ddraw:ddraw1 => WM_KILLFOCUS not received ddraw:ddraw2 => Failed to set foreground window ddraw:ddraw4 => WM_KILLFOCUS not received ddraw:ddraw7 => WM_KILLFOCUS not received (ntdll:threadpool -> bug 54064) .. 1938 .. 1933 .. 1936 .. 1934 .. 1935 .. 1885 01-10 .. 1921 .f 1928 (ntdll:threadpool -> bug 54064) .. 1906 01-09 .. 1926 .. 1886 .. 1922 .f 1920 (ws2_32:sock -> bug 54074) .. 1905 .. 1923 01-06 --- week 01-02 .. 1916 .. 1908 .. 1909 .. 1910 .. 1911 .. 1878 .. 1902 .. 1884 .. 1880 .. 1904 .. 1901 .. 1891 .. 1890 .f 1881 (ws2_32:afd -> bug 54113) .. 1882 .f 1887 (ntdll:threadpool -> bug 54064) .. 1875 .. 1864 S. 1865 .. 1863 12-23 --- week 12-19 12-22 .. 1883 ff 1876 d3d9:device -> bug 53979 (mshtml:htmllocation -> bug 28362) .. 1879 N. 1874 => fixed, new user32:msg failures on most w7 12-21 .. 1828 .. 1868 .. 1872 .f 1873 (urlmon:url => progress status 200) (ws2_32:sock -> bug 54073) .. 1850 .. 1847 .. 1871 f. 1870 urlmon:url => progress status 200 .. 1869 .. 1832 .. 1866 12-20 .. 1862 .. 1851 .. 1852 .f 1848 (user32:win -> bug 53206) .. 1861 .f 1854 (ntdll:threadpool -> bug 54064) .. 1860 .. 1839 .f 1846 (ntdll:threadpool -> bug 54064) (quartz:systemclock => Event should not be signaled) .. 1858 12-19 .. 1845 .. 1824 .. 1843 .. 1842 .. 1840 .. 1837 .. 1836 .. 1835 .. 1833 .. 1831 12-16 --- week 12-12 .. 1830 .. 1829 .. 1794 .. 1826 12-15 f. 1823 kernel32:debugger -> new bug 54159 + unique? .. 1774 .. 1822 f. 1820 quartz:filtergraph -> new bug 54161 .. 1821 .f 1819 (ddraw:ddraw7 => Expect window rect 640,480) (explorer.exe:explorer => got 904,0-1024,768) (quartz:videorenderer => Got height 492) .. 1816 .. 1818 12-14 .. 1817 .. 1805 .. 1545 .. 1814 .. 1815 .f 1813 (ole32:clipboard -> bug 54005) (ws2_32:afd -> bug 54113) (ws2_32:sock -> bug 54073) 12-13 .f 1750 (winhttp:notification -> fixed bug 54098) .f 1802 (ntdll:pipe -> fixed bug 54078) .. 1803 .. 1808 .. 1776 .f 1804 (wmvcore:wmvcore -> bug 54042) 12-12 .. 1793 .. 1796 .. 1766 .. 1792 .. 1768 .. 1772 .. 1763 .. 1791 .. 1789 12-09 --- week 12-02 .o 1751 (winhttp:notification -> fixed bug 54098) .f 1681 (mmdevapi:capture => Position 1920 expected 1440) (user32:msg -> bug 54037) (winhttp:notification -> fixed bug 54098) .o 1740 (winhttp:notification -> fixed bug 54098) .f 1757 (build:windows-on-unix) .f 1761 (ole32:clipboard -> bug 54005) .f 1758 (ntdll:pipe -> fixed bug 54078) (ws2_32:sock -> bug 54074 + bug 52474) .. 1759 .f 1631 (ntdll:pipe -> fixed bug 54078) (wmvcore:wmvcore -> bug 54042) .. 1638 oo 1721 winhttp:notification -> fixed bug 54098 (winhttp:notification -> fixed bug 54098) .f 1754 (build:windows-on-unix -> fixed) .. 1760 .. 1582 12-08 .o 1727 (winhttp:notification -> fixed bug 54098) .o 1739 (winhttp:notification -> fixed bug 54098) .o 1738 (winhttp:notification -> fixed bug 54098) .o 1737 (winhttp:notification -> fixed bug 54098) fo 1635 ws2_32:afd -> new bug 54113 (winhttp:notification -> fixed bug 54098) .o 1748 (winhttp:notification -> fixed bug 54098) .f 1747 (ntdll:threadpool -> bug 54064) (winhttp:notification -> fixed bug 54098) .o 1745 (winhttp:notification -> fixed bug 54098) .o 906 (winhttp:notification -> fixed bug 54098) .o 1744 (winhttp:notification -> fixed bug 54098) .f 1742 (winhttp:notification -> fixed bug 54098) (ws2_32:afd -> new bug 54113) .f 1736 taskschd:scheduler -> new bug 54109 (winhttp:notification -> fixed bug 54098) .f 1701 (ntdll:threadpool -> bug 54064) (winhttp:notification -> fixed bug 54098) .o 1743 (winhttp:notification -> fixed bug 54098) .o 1734 (winhttp:notification -> fixed bug 54098) .o 1735 (winhttp:notification -> fixed bug 54098) .. 1741 12-07 Bo 1732 taskschd:scheduler -> fixed bug 54105 taskschd:scheduler -> new bug 54106 (winhttp:notification -> fixed bug 54098) .o 1666 (ntdll:threadpool -> bug 54064) (winhttp:notification -> fixed bug 54098) ff 1705 ws2_32:sock -> bug 54073 variant (ddraw:ddraw7 => unexpected screen width 640) (ntdll:pipe -> fixed bug 54078) (winhttp:notification -> fixed bug 54098) .o 1726 (winhttp:notification -> fixed bug 54098) .o 1730 (rpcrt4:server -> bug 54348) (winhttp:notification -> fixed bug 54098) .o 1729 (ntdll:threadpool -> bug 54064) (winhttp:notification -> fixed bug 54098) .o 1728 (ntdll:threadpool -> bug 54064) (winhttp:notification -> fixed bug 54098) Fo 1731 msctf:inputprocessor (winhttp:notification -> fixed bug 54098) oo 1713 winhttp:notification -> fixed bug 54098 (winhttp:notification -> fixed bug 54098) So 1717 ??? (winhttp:notification -> fixed bug 54098) .o 1719 (winhttp:notification -> fixed bug 54098) oo 1718 winhttp:notification -> fixed bug 54098 (winhttp:notification -> fixed bug 54098) oo 1720 winhttp:notification -> fixed bug 54098 (winhttp:notification -> fixed bug 54098) of 1722 winhttp:notification -> fixed bug 54098 (ntdll:threadpool -> bug 54064) (winhttp:notification -> fixed bug 54098) oo 1723 winhttp:notification -> fixed bug 54098 (winhttp:notification -> fixed bug 54098) oo 1716 winhttp:notification -> fixed bug 54098 (winhttp:notification -> fixed bug 54098) .o 1698 (winhttp:notification -> fixed bug 54098) .f 1715 (winhttp:notification -> fixed bug 54098) (ws2_32:sock -> bug 54074) oo 1724 winhttp:notification -> fixed bug 54098 (winhttp:notification -> fixed bug 54098) 12-06 .. 1712 .. 1704 .. 1702 .. 1692 .. 1693 .. 1618 f. 1708 wmvcore:wmvcore -> new bug 54398 ff 1703 quartz:filtermapper -> new bug 54095 (mshtml:misc => removeItem failed: 80004005) (user32:menu -> bug 53188) .. 1709 .. 1711 .f 1700 (ntdll:threadpool -> bug 54064) .f 1688 (ntdll:pipe -> fixed bug 54078) (ole32:clipboard -> bug 54005) .. 1697 .f 1699 (urlmon:protocol -> bug 54081) (ws2_32:sock -> bug 54074) .. 1696 .. 1694 .. 1695 f. 1691 kernel32:process -> fixed bug 54094 .. 1690 .. 1689 .. 1181 .. 1687 12-05 .f 1630 (ntdll:threadpool -> bug 54064) .. 1664 .. 1602 .. 1677 .. 1529 .. 1660 .f 1685 (ntdll:threadpool -> bug 54064) .f 1668 (mmdevapi:capture -> bug 53433) (qasf:asfreader -> new bug 54334) .. 1676 f. 1675 shell32:autocomplete -> new bug 54090 .. 1678 .. 1679 .. 1646 .. 1643 .. 1680 .. 1673 .f 1667 (ws2_32:afd -> new bug 54113) (ws2_32:sock -> bug 52474) .f 1669 (wininet:http -> bug 54084) (ws2_32:sock -> bug 54073) f. 1547 mmdevapi:capture -> bug 53265 variant .. 1663 .f 1672 (dxgi:dxgi => monitor rect 800,600) (explorer.exe:explorer => got 904,0-1024,768) (ntdll:file => CallerAvailableAllocationUnits error) .. 1671 .. 1670 12-02 --- week 11-28 .f 1622 (user32:menu -> bug 53188) (user32:msg -> bug 54037) .. 1542 .. 1654 .f 1659 (wmvcore:wmvcore -> bug 54042) .. 1623 .. 1653 .. 1640 .f 1647 (mmdevapi:capture -> bug 53433) .. 1644 .. 1645 .. 1649 .. 1651 .. 1629 .. 1655 .f 1656 (ole32:clipboard -> bug 54005) .. 1657 .f 1658 (mmdevapi:capture -> bug 53433) (ole32:clipboard -> bug 54005) .. 1648 .. 1650 .. 1652 .f 1617 (ntdll:pipe -> fixed bug 54078) (user32:msg -> bug 54037) 12-01 .. 1642 .. 1641 .. 1639 .. 1632 .f 1523 (timeout) .. 1634 .. 1606 .. 1636 f. 1619 user32:input -> new bug 54053 + bug 51477 .f 1502 (mmdevapi:capture -> bug 53433) Ff 1627 mshtml:misc -> bug 54415 (ntdll:pipe -> fixed bug 54078) .. 1624 .. 1510 .f 1608 (mmdevapi:render -> new bug 54140) (user32:msg -> bug 54037) .f 1615 (ntdll:threadpool -> new bug 54064) .. 1616 .. 1621 .. 1620 .. 1569 .o 1579 (wldap32:parse -> fixed bug 54075) .. 1571 11-30 f. 1560 winhttp:notification -> fixed bug 54052 ff 1598 shell32:shelllink -> new bug 54061 (mmdevapi:capture -> bug 53433) (mmdevapi:render -> new bug 54140) (ntdll:pipe -> fixed bug 54078) .. 1503 .. 1614 .. 1611 .. 1613 .. 1593 .. 1599 .. 1601 df 1454 MR!1399 fallout (ntdll:threadpool -> new bug 54064) f. 1553 winhttp:notification -> fixed bug 54052 e. 1604 The previous 1 run(s) ... .. 1556 .f 1607 (mmdevapi:capture -> bug 53433) .. 1609 ff 1199 wmvcore:wmvcore -> new bug 54039 (mmdevapi:render -> new bug 54140) .. 1520 .f 1605 (mmdevapi:capture -> bug 53433) .f 1603 (mmdevapi:capture -> bug 53433) .. 1567 .f 1564 (mmdevapi:render -> new bug 54140) 11-29 .. 1555 ff 1575 shell32:shelllink -> new bug 54061 advapi32:security -> bug 54014 (mmdevapi:capture -> bug 53433) oo 1581 wldap32:parse -> fixed bug 54075 (wldap32:parse -> fixed bug 54075) oo 1574 wldap32:parse -> fixed bug 54075 shell32:autocomplete -> new bug 54090 (wldap32:parse -> fixed bug 54075) .. 1522 .. 1539 .. 1551 .. 1597 .f 1326 (ntdll:threadpool -> new bug 54064) (user32:msg -> new bug 54036) (user32:win => bad GetForegroundWindow) .f 1596 (user32:msg -> new bug 54037) ff 1595 advapi32:security -> bug 54014 (ntdll:pipe -> fixed bug 54078) fo 1585 msctf:inputprocessor -> new bug 54062 wldap32:parse -> fixed bug 54075 (wldap32:parse -> fixed bug 54075) fo 1583 advapi32:security -> bug 54014 wldap32:parse -> fixed bug 54075 wmvcore:wmvcore -> new bug 54039 ws2_32:sock -> new bug 54073 (wldap32:parse -> fixed bug 54075) .. 1566 f. 1594 advapi32:security -> bug 54014 .. 1592 .. 1577 11-28 .. 1562 ff 1561 vbscript:run -> new bug 54003 (ddraw:ddraw2 => unexpected screen size 400x300) (ole32:clipboard -> new bug 54005) (ws2_32:sock -> new bug 54074) .. 1572 .. 1548 .f 1576 (mmdevapi:capture -> bug 53433) .f 1573 (mmdevapi:capture -> bug 53433) f. 1549 d3d9:d3d9ex -> new bug 53979 ntoskrnl.exe:driver_pnp -> new bug 54004 .. 1558 .. 1563 ef 1526 The previous 1 run(s) ... (ole32:clipboard -> new bug 54005) .. 1568 .. 1565 .. 1570 f. 1557 winhttp:notification -> fixed bug 54052 .f 1536 (ntdll:file => CallerAvailableAllocationUnits error) 11-26 --- week 11-21 .f 1546 (ws2_32:sock -> new bug 54073) f. 1550 uiautomationcore:uiautomation => unique, ignore .f 1519 (user32:msg -> new bug 54037) .. 1544 ff 1537 advapi32:security -> bug 54014 (ntdll:threadpool -> new bug 54064) .. 1535 .. 1540 .. 1541 11-24 d. 1489 MR!1399 fallout .f 1528 (mmdevapi:render -> new bug 54140) .. 1422 f. 1534 vbscript:run -> new bug 54003 f. 1538 d3d9:d3d9ex -> new bug 53979 .f 1527 (kernel32:process -> fixed WINELOADER) .. 1530 .f 1531 (mmdevapi:capture -> bug 53433) .. 1532 d. 1427 MR!1399 fallout 11-23 kernel32:process -> c#b00a831d fixed since dd 1297 MR!1399 fallout (kernel32:process) .d 1524 (kernel32:process -> fixed) (ws2_32:sock -> new bug 54073) .f 1525 (kernel32:process -> fixed) (ntdll:pipe -> fixed bug 54078) (ws2_32:sock -> new bug 54073) .f 1504 (kernel32:process -> fixed) (ntdll:pipe -> fixed bug 54078) .d 1514 (kernel32:process -> fixed) .d 1513 (kernel32:process -> fixed) .d 1511 (kernel32:process -> fixed) .d 1521 (kernel32:process -> fixed) .d 1515 (kernel32:process -> fixed) ef 1506 The previous 1 run(s) ... (build-linux timeout) .. 1500 d. 1456 MR!1399 fallout Sf 1512 ??? (kernel32:process -> fixed) (mshtml:misc => getItem failed: 80004005) (user32:menu -> bug 53188) d. 1423 MR!1399 fallout .. 1384 d. 1491 MR!1399 fallout .f 1509 (mmdevapi:capture -> bug 53433) (urlmon:protocol -> new bug 54080) .. 1507 .f 1508 (ntdll:file => CallerAvailableAllocationUnits error) (ntdll:threadpool -> new bug 54064) .. 1505 .f 1485 (ws2_32:sock -> new bug 54074) ef 1447 The previous 1 run(s) ... (build-linux timeout) 11-22 d. 1461 MR!1399 fallout .. 1453 f. 1470 kernel32:heap => unique, ignore .f 1499 (kernel32:heap -> new bug 54498) .. 1497 .. 1501 d. 1442 MR!1399 fallout Bf 1495 vbscript:run -> fixed since (shell32:shelllink -> new bug 54061) .. 1496 d. 1490 MR!1399 fallout .. 1493 d. 1474 MR!1399 fallout d. 1476 MR!1399 fallout .. 1482 d. 1464 MR!1399 fallout .. 1486 .. 1487 d. 1460 MR!1399 fallout d. 1466 MR!1399 fallout .. 1479 .. 1481 df 1483 MR!1399 fallout (mmdevapi:capture -> bug 53433) .. 1484 .. 1480 d. 1488 MR!1399 fallout S. 1478 ??? S. 1448 ??? S. 1477 ??? 11-21 f. 1473 ucrtbase:cpp => unique, ignore .. 1475 S. 1459 ??? d. 1435 MR!1399 fallout df 1462 MR!1399 fallout (mmdevapi:capture -> bug 53433) d. 1467 MR!1399 fallout d. 1451 MR!1399 fallout df 1450 MR!1399 fallout (ntdll:threadpool -> new bug 54064) d. 1452 MR!1399 fallout .. 1458 .. 1463 f. 1457 d3drm:d3drm -> fixed bug 53974 d. 1472 MR!1399 fallout d. 1449 MR!1399 fallout d. 1343 MR!1399 fallout .. 1416 d. 1471 MR!1399 fallout d. 1465 MR!1399 fallout d. 1468 MR!1399 fallout d. 1469 MR!1399 fallout 11-18 --- week 11-14 d. 1334 MR!1399 fallout d. 1434 MR!1399 fallout d. 1426 MR!1399 fallout ?. 1436 MR!1399 fallout + bad patch??? d. 1373 mshtml:htmldoc => only in this MR, ignore d. 1440 MR!1399 fallout df 1441 MR!1399 fallout (shell32:shelllink -> new bug 54061) d. 1438 MR!1399 fallout d. 1417 MR!1399 fallout d. 1433 MR!1399 fallout .. 1431 .. 1430 .. 1429 .. 1428 eo 1231 The previous 1 run(s) ... (crypt32:cert -> run on 2022-11-18 but fixed by MR!1360 on 2022-11-14!) d. 1439 MR!1399 fallout ff 1413 winediag:d3d_device_create -> fixed bug 53975, lumped (mmdevapi:capture -> bug 53433) .. 914 .. 1392 oo 966 crypt32:cert -> run on 2022-11-14, fixed by MR!1360 (crypt32:cert -> run on 2022-11-14, fixed by MR!1360) .. 1424 N. 1432 good but -> bug 53977 11-17 f. 1419 d3drm:d3drm -> fixed bug 53975 .. 1420 .. 1340 B. 1398 ntoskrnl.exe:ntoskrnl -> fixed bug 53976 .. 1412 f. 1400 dinput:hid -> fixed bug 53525 fixed context regular expression .. 1409 e. 1394 The previous 1 run(s) ... .. 1415 .. 1335 .. 1396 f. 1397 httpapi:httpapi -> fixed bug 53980 .. 1403 B. 1399 broke winetest -> bug 53963 .f 1405 (build-linux cc error) .. 1401 .. 1406 f. 1404 d3drm:d3drm -> fixed bug 53974 .f 1402 (mmdevapi:capture -> bug 53433) .. 1410 .. 1407 f. 1411 d3drm:d3drm -> fixed bug 53974 .. 1408 11-16 .. 1389 .. 1374 f. 1391 d3d8:device -> bug 52983 variant .. 1390 .. 1386 .o 1295 (crypt32:cert -> run on 2022-11-16 but fixed by MR!1360 on 2022-11-14!) .. 1365 f. 1385 d3drm:d3drm -> fixed bug 53974 d3d9:device -> bug 52983 .. 1388 .. 1387 f. 1382 ole32:clipboard -> new bug 54005 .o 1351 (crypt32:cert -> run on 2022-11-16 but fixed by MR!1360 on 2022-11-14!) .. 1381 .. 1380 .. 1376 f. 1379 advapi32:security -> bug 54014 .. 1378 .. 1375 .. 1383 11-15 f. 1344 d3d11:d3d11 -> bug 53252 ef 1370 The previous 1 run(s) ... (quartz:systemclock) .. 1369 f. 1372 d3drm:d3drm -> fixed bug 53975 fo 1350 crypt32:cert -> fixed by MR!1360 wmvcore:wmvcore -> new bug 54041 (crypt32:cert -> fixed by MR!1360) oo 1366 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) .. 1368 oo 1361 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) f. 1298 crypt32:cert -> fixed by MR!1360 d3d8:device -> bug 52983 variant d3d9:device -> bug 52983 oo 1367 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) 11-14 fo 1363 crypt32:cert -> fixed by MR!1360 advapi32:security -> bug 54014 (crypt32:cert -> fixed by MR!1360) oo 1317 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) .f 1362 (crypt32:cert -> fixed by MR!1360) (mmdevapi:capture -> bug 53433) oo 1353 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) oo 1356 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) oo 1357 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) oo 1359 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) oo 1358 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) oo 1347 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) .. 1360 -> fixes crypt32:cert -> yay fo 1354 crypt32:cert -> fixed by MR!1360 wmvcore:wmvcore -> new bug 54039 (crypt32:cert -> fixed by MR!1360) f. 1315 advapi32:security -> bug 54014 of 1342 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) (user32:msg -> new bug 54036) (user32:win => bad GetForegroundWindow) oo 1352 crypt32:cert -> fixed by MR!1360 (crypt32:cert -> fixed by MR!1360) .o 1349 (crypt32:cert -> fixed by MR!1360) .. 1348 .. 1260 f. 1346 winediag:d3d_device_create -> fixed bug 53975, lumped .. 1345 ff 1341 ole32:clipboard -> new bug 54005 (user32:msg -> new bug 54036) (user32:win => bad GetForegroundWindow) f. 1307 d3drm:d3drm -> fixed bug 53975 httpapi:httpapi -> fixed bug 53980 winediag:d3d_device_create -> fixed bug 53975, lumped .. 1249 .. 1331 f. 1332 d3d8:device -> bug 52983 variant 11-11 -- week 11-07