mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[MSI_WINETEST]
- Skip msi:msi test if running on Windows in non-interactive mode. This should allow WHS-Testbot to get a bit further ROSTESTS-180 ONLINE-441 ROSTESTS-179 svn path=/trunk/; revision=68319
This commit is contained in:
parent
df14063ebc
commit
6faf4f830e
1 changed files with 9 additions and 0 deletions
|
@ -14367,6 +14367,15 @@ START_TEST(msi)
|
|||
DWORD len;
|
||||
char temp_path[MAX_PATH], prev_path[MAX_PATH];
|
||||
|
||||
#ifdef __REACTOS__
|
||||
if (!winetest_interactive &&
|
||||
!strcmp(winetest_platform, "windows"))
|
||||
{
|
||||
skip("ROSTESTS-180: Skipping msi_winetest:msi because it hangs on WHS-Testbot. Set winetest_interactive to run it anyway.\n");
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
init_functionpointers();
|
||||
|
||||
if (pIsWow64Process)
|
||||
|
|
Loading…
Reference in a new issue