It looks like the behavior changes when only this test is run vs when it
is run as part of the winetest suite.
This is probably because ChangeDisplaySettingsExW only sends the message
the first time it is called (since boot?).
Having other tests run before it, one of them probably changed display
settings already and we're not getting the message anymore.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53894
--
v2: user32/tests: Use %d to print last_bpp instead of %u.
user32/tests: Don't expect WM_DISPLAYCHANGE with the default display mode.
https://gitlab.winehq.org/wine/wine/-/merge_requests/1829
It looks like the behavior changes when only this test is run vs when it
is run as part of the winetest suite.
This is probably because ChangeDisplaySettingsExW only sends the message
the first time it is called (since boot?).
Having other tests run before it, one of them probably changed display
settings already and we're not getting the message anymore.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53894
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/1829
Some applications have a `<name>.exe.config` file with the element
`<probing>` to specify additional directories to search for assemblies. As
it is not handled in wine, these applications fail to load.
To keep this commit simple, it only supports probing. The other parts of
the application configuration file are unimplemented.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/1827
## Summary
Tests for UrlFixupW and semi stub function implementaion.
## Test results
- Tests are 100% ok on my local WIN 10 pc. Wine test bot seems to be okay too.
- Wine tests on debian machine
| function type | result |
| ------ | ------ |
| stub | 0020:url: 69802 tests executed (0 marked as todo, 0 as flaky, **200** failures), 0 skipped. |
| semi stub| 0020:url: 69802 tests executed (0 marked as todo, 0 as flaky, **100** failures), 0 skipped. |
## Todos
For follow up merge request(s).
- [ ] Add more tests for priority investigation, who url scheme fix up is working on windows.
- [ ] Implement missing parts of fix up.
## Conclusion
Semi stub implementation is an improvement to the existing solution. A grep showed that wine internals do not call this function, therefore it should not introduce any new bugs. Windows applications using/relying on the function should now work better, if not they may reveal already existing bugs.
--
v2: shlwapi/tests: Mark tests as todo for UrlFixupW.
https://gitlab.winehq.org/wine/wine/-/merge_requests/1825