msi/tests: Skip a test if the process is limited.
This commit is contained in:
parent
0dec906d61
commit
d7952d8a24
|
@ -4721,6 +4721,12 @@ static void test_create_remove_folder(void)
|
|||
{
|
||||
UINT r;
|
||||
|
||||
if (is_process_limited())
|
||||
{
|
||||
skip("process is limited\n");
|
||||
return;
|
||||
}
|
||||
|
||||
CreateDirectoryA("msitest", NULL);
|
||||
CreateDirectoryA("msitest\\first", NULL);
|
||||
CreateDirectoryA("msitest\\second", NULL);
|
||||
|
|
Loading…
Reference in New Issue