- 24 Oct, 2022 4 commits
-
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Paul Gofman authored
-
- 21 Oct, 2022 15 commits
-
-
Connor McAdams authored
Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
-
Connor McAdams authored
Windows versions 10v1507 and below classify a provider as an HWND provider if it returns a value for UIA_NativeWindowHandle. By ignoring this property, we get more consistent behavior in tests between all Windows versions. Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
-
Hans Leidekker authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53813
-
Eric Pouech authored
Instead of silently leaking no longer used chunks. Be more robust to OOM conditions. Introducing pool_realloc(). Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
Eric Pouech authored
Create a dedicated heap for each module (as it was done for the private home grown pools). Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
Piotr Caban authored
-
Piotr Caban authored
-
Brendan Shanks authored
-
Zebediah Figura authored
We can only get a successful status that way. This matches sock_recv(). Also combine the if (alerted) blocks. Unlike the previous commits, this cannot be separated, as it causes warnings with some versions of gcc.
-
Zebediah Figura authored
There is no need to release the async_fileio structure before calling set_async_direct_result().
-
Zebediah Figura authored
We can only get a successful status that way. This matches sock_recv().
-
Zebediah Figura authored
There is no need to release the async_fileio structure before calling set_async_direct_result().
-
Zebediah Figura authored
We can only get a successful status that way. This avoids an uninitialized variable warning with gcc 12.2.
-
Zebediah Figura authored
-
Zebediah Figura authored
-
- 20 Oct, 2022 21 commits
-
-
Jinoh Kang authored
-
Francois Gouget authored
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=53134
-
Francois Gouget authored
-
Francois Gouget authored
-
Francois Gouget authored
-
Francois Gouget authored
-
Francois Gouget authored
-
Brendan Shanks authored
-
Zhiyi Zhang authored
Fix a test failure when theming is off. A toolbar without TBSTYLE_FLAT will fill its checked button background rectangle when theming is inactive, overwriting the checked pattern required for the test.
-
Eric Pouech authored
Some Windows version expect output to be aligned on 4 bytes. Notes (from i386 and x86_64 tests): - MSVC and Mingw/gcc don't layout the two variables (sdki, sdki_ex) the same way. - MSVC aligns each variable on 4-byte boundary, - MingW/GCC stores them in a 8-byte chunk, but starting from the end of the buffer: hence none of them is on a 4-byte boundary. So, fixing the alignment of variables is not sufficient to workaround the compilers' discrepancy on all source code. I didn't find a generic way to align on 4 bytes structures of size smaller than 4 bytes (apart from adding the DECLSPEC_ALIGN to each of the offending structures, likely not that many though). Ideas welcomed. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53684Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
Alex Henrie authored
Needed to compile Tera Term.
-
Alex Henrie authored
-
Francois Gouget authored
The caller already analyses get_subtests() errors and provides a detailed error message in the information section of the report so the report(R_ERROR) pop up / stderr message is redundant.
-
Francois Gouget authored
Also add a full stop to match the other ERR() messages in load_secondary_signatures().
-
Brendan Shanks authored
-
Eric Pouech authored
Method decriptor's strings are internally stored in ANSI, and potentially converted from Unicode using current code page. Test was expecting loss in Unicode to ANSI conversion. Adapt test to also support loss-less conversion (that's the case when code page is UTF-8). Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52873Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
-
Ziqing Hui authored
-
Ziqing Hui authored
-
Ziqing Hui authored
-
Ziqing Hui authored
-
Rémi Bernon authored
Fixes "Use of uninitialized value $Flaky" message in testbot reports.
-