Wine-Devel
By thread
wine-devel@list.winehq.org
By month
Messages by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
June 2018
- 68 participants
- 1149 messages
[PATCH 1/2] dwrite: Test IDWriteTextFormat with nonexistent font
by Lucian Poston
Signed-off-by: Lucian Poston <lucianposton(a)pm.me>
---
dlls/dwrite/tests/layout.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/dlls/dwrite/tests/layout.c b/dlls/dwrite/tests/layout.c
index c2dd273c6c..ac36aff5b5 100644
--- a/dlls/dwrite/tests/layout.c
+++ b/dlls/dwrite/tests/layout.c
@@ -32,6 +32,7 @@
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
static const WCHAR tahomaW[] = {'T','a','h','o','m','a',0};
+static const WCHAR nonExistentFontW[] = {'B','l','a','h','!',0};
static const WCHAR enusW[] = {'e','n','-','u','s',0};
struct testanalysissink
@@ -3294,6 +3295,51 @@ todo_wine
ok(metrics.lineCount == 1, "got %u\n", metrics.lineCount);
IDWriteTextLayout_Release(layout);
+ IDWriteTextFormat_Release(format);
+
+ /* nonexistent font */
+ hr = IDWriteFactory_CreateTextFormat(factory, nonExistentFontW, NULL, DWRITE_FONT_WEIGHT_NORMAL, DWRITE_FONT_STYLE_NORMAL,
+ DWRITE_FONT_STRETCH_NORMAL, 10.0, enusW, &format);
+ ok(hr == S_OK, "got 0x%08x\n", hr);
+
+ hr = IDWriteFactory_CreateTextLayout(factory, strW, 4, format, 500.0, 1000.0, &layout);
+ ok(hr == S_OK, "got 0x%08x\n", hr);
+
+ count = 0;
+ hr = IDWriteTextLayout_GetClusterMetrics(layout, clusters, 4, &count);
+todo_wine
+ ok(hr == S_OK, "got 0x%08x\n", hr);
+todo_wine
+ ok(count == 4, "got %u\n", count);
+ for (i = 0, width = 0.0; i < count; i++)
+ width += clusters[i].width;
+
+ memset(&metrics, 0xcc, sizeof(metrics));
+ hr = IDWriteTextLayout_GetMetrics(layout, &metrics);
+todo_wine
+ ok(hr == S_OK, "got 0x%08x\n", hr);
+todo_wine
+ ok(metrics.left == 0.0, "got %.2f\n", metrics.left);
+todo_wine
+ ok(metrics.top == 0.0, "got %.2f\n", metrics.top);
+todo_wine
+ ok(metrics.width == width, "got %.2f, expected %.2f\n", metrics.width, width);
+todo_wine
+ ok(metrics.widthIncludingTrailingWhitespace == width, "got %.2f, expected %.2f\n",
+ metrics.widthIncludingTrailingWhitespace, width);
+todo_wine
+ ok(metrics.height > 0.0, "got %.2f\n", metrics.height);
+todo_wine
+ ok(metrics.layoutWidth == 500.0, "got %.2f\n", metrics.layoutWidth);
+todo_wine
+ ok(metrics.layoutHeight == 1000.0, "got %.2f\n", metrics.layoutHeight);
+todo_wine
+ ok(metrics.maxBidiReorderingDepth == 1, "got %u\n", metrics.maxBidiReorderingDepth);
+todo_wine
+ ok(metrics.lineCount == 1, "got %u\n", metrics.lineCount);
+
+ IDWriteTextLayout_Release(layout);
+
IDWriteTextFormat_Release(format);
IDWriteFactory_Release(factory);
}
--
2.16.4
June 28, 2018
Re: [PATCH] include/d3d12: Fix typos.
by Henri Verbeet
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
June 27, 2018
Re: [PATCH] kernel32/tests: Use the available ARRAY_SIZE() macro
by Michael Stefaniuc
Unclear why this fails so massively on manual runs as the daily runs
don't show it to be a big problem.
Anyway, my patch is a true no-op.
The tests fail also with a whitespace only change
https://testbot.winehq.org/JobDetails.pl?Key=39420
bye
michael
On 06/27/2018 10:09 PM, Marvin wrote:
> Hi,
>
> While running your changed tests on Windows, I think I found new failures.
> Being a bot and all I'm not very good at pattern recognition, so I might be
> wrong, but could you please double-check?
> Full results can be found at
> https://testbot.winehq.org/JobDetails.pl?Key=39415
>
> Your paranoid android.
>
>
> === wvistau64 (64 bit file) ===
> TestBot process got stuck or died unexpectedly
> The previous 1 run(s) terminated abnormally
>
> === w1064 (64 bit module) ===
> kernel32:module crashed (c00000fd)
>
> === wvistau64 (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === wvistau64_zh_CN (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === wvistau64_fr (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === wvistau64_he (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === w2008s64 (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === w7u (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === w7pro64 (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === w8 (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> TestBot process got stuck or died unexpectedly
> The previous 1 run(s) terminated abnormally
>
> === w8adm (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === w864 (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
> === w1064 (32 bit virtual) ===
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 0, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2839: Test failed: expected policy flags 1, got 3
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
> virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
> virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
>
>
June 27, 2018
Re: [PATCH vkd3d 4/4] libs/vkd3d: Trace build version.
by Henri Verbeet
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
June 27, 2018
Re: [PATCH vkd3d 2/4] tests: Add test for cube maps.
by Henri Verbeet
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
June 27, 2018
Re: [PATCH vkd3d 3/4] libs/vkd3d: Set names for internal threads.
by Henri Verbeet
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
June 27, 2018
Re: [PATCH vkd3d 1/4] libs/vkd3d: Implement cube shader resource views.
by Henri Verbeet
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
June 27, 2018
Re: [PATCH] kernel32/tests: Use the available ARRAY_SIZE() macro
by Marvin
Hi,
While running your changed tests on Windows, I think I found new failures.
Being a bot and all I'm not very good at pattern recognition, so I might be
wrong, but could you please double-check?
Full results can be found at
https://testbot.winehq.org/JobDetails.pl?Key=39415
Your paranoid android.
=== wvistau64 (64 bit file) ===
TestBot process got stuck or died unexpectedly
The previous 1 run(s) terminated abnormally
=== w1064 (64 bit module) ===
kernel32:module crashed (c00000fd)
=== wvistau64 (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== wvistau64_zh_CN (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== wvistau64_fr (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== wvistau64_he (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== w2008s64 (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== w7u (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== w7pro64 (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== w8 (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
TestBot process got stuck or died unexpectedly
The previous 1 run(s) terminated abnormally
=== w8adm (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== w864 (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
=== w1064 (32 bit virtual) ===
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 0, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2895: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2909: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3034: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3052: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3133: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3157: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2839: Test failed: expected policy flags 1, got 3
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:2938: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:2953: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3001: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3016: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3197: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3222: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2801: Test failed: NtSetInformationProcess failed with status c0000022
virtual.c:2840: Test failed: expected policy permanent FALSE, got 1
virtual.c:3259: Test failed: NtSetInformationProcess failed with status c0000022
June 27, 2018
Re: [PATCH] kernel32/tests: Avoid ARRAY_SIZE-like macros
by Michael Stefaniuc
On 06/27/2018 09:07 PM, Marvin wrote:
> Hi,
>
> While running your changed tests on Windows, I think I found new failures.
> Being a bot and all I'm not very good at pattern recognition, so I might be
> wrong, but could you please double-check?
> Full results can be found at
> https://testbot.winehq.org/JobDetails.pl?Key=39414
>
> Your paranoid android.
>
>
> === w8 (32 bit comm) ===
> comm.c:859: Test failed: WaitCommEvent failed with a timeout
> comm.c:870: recovering after WAIT_TIMEOUT...
> comm.c:880: Test failed: WaitCommEvent error 0
> comm.c:881: Test failed: WaitCommEvent: expected EV_TXEMPTY, got 0
> comm.c:885: WaitCommEvent for EV_TXEMPTY took 1515 ms (timeout 1500)
> comm.c:886: Test failed: WaitCommEvent used 1515 ms for waiting
> comm.c:1553: test_AbortWaitCts timeout 500 handle 00000144
> comm.c:1520: Changing CommMask on the fly for handle 00000144 after timeout 500
Flaky tests, see
https://test.winehq.org/data/f637408a23fb0c92e56f677ab1793b66f739b14d/win8_…
The line numbers just changed.
bye
michael
June 27, 2018
Re: Bug #45385 related to keyboard and probably wineserver - where to start the search
by Alex Henrie
On Wed, Jun 27, 2018 at 11:24 AM John Found <johnfound(a)asm32.info> wrote:
>
> While reading the code in wineX11.drv/keyboard.c I noticed the following fragment from the function X11DRV_KeymapNotify:
>
> for (vkey = VK_LSHIFT; vkey <= VK_RMENU; vkey++)
> {
> int m = vkey - VK_LSHIFT;
> >>> if (modifiers[m].vkey && !(keystate[vkey] & 0x80) != !modifiers[m].pressed)
> {
> TRACE( "Adjusting state for vkey %#.2x. State before %#.2x\n",
> modifiers[m].vkey, keystate[vkey]);
>
> update_key_state( keystate, vkey, modifiers[m].pressed );
> changed = TRUE;
> }
> }
>
> Can someone explain what the condition pointed by >>> is doing? (Unfortunately, my C skills are pretty low...)
>
> Why not simply "(modifiers[m].vkey && (keystate[vkey] & 0x80) != modifiers[m].pressed)"?
I don't immediately know what this if statement is for, but I can tell
you that the ! operator converts a value of zero to 1 and a nonzero
value to 0. So, if keystate[vkey] & 0x80 is 0 then
modifiers[m].pressed must be nonzero and vice versa.
-Alex
June 27, 2018