From: Francois Gouget fgouget@codeweavers.com
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=53172 --- dlls/advapi32/tests/registry.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/advapi32/tests/registry.c b/dlls/advapi32/tests/registry.c index 10ca4b51fd9..763ba3101ae 100644 --- a/dlls/advapi32/tests/registry.c +++ b/dlls/advapi32/tests/registry.c @@ -555,6 +555,7 @@ static void test_enum_value(void) /* v5.1.2600.0 (XP Home and Professional) does not touch value or data in this case */ ok( !strcmp( value, "Te" ) || !strcmp( value, "xxxxxxxxxx" ), "value set to '%s' instead of 'Te' or 'xxxxxxxxxx'\n", value ); + flaky ok( !strcmp( data, "foobar" ) || !strcmp( data, "xxxxxxx" ) || broken( data_count > 7 && strspn( data, "x" ) == data_count && data[data_count] == 0 ), "data set to '%s' instead of 'foobar' or x's, data_count=%lu\n", data, data_count );