Commit 1e5a03ec authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

shell32/tests: Added to-do test showing a bug with file paths with spaces.

If ShellExecuteEx is asked to execute a file which has a space in its path, and if there exists a "masking" file whose name matches the path truncated at a space, then ShellExecuteEx launches the masking file instead.
parent 725f4bfe
......@@ -480,6 +480,8 @@ static const char* testfiles[]=
"%s\\test file.shl",
"%s\\test file.shlfoo",
"%s\\test file.sfe",
"%s\\masked file.shlexec",
"%s\\masked",
NULL
};
......@@ -517,6 +519,9 @@ static filename_tests_t filename_tests[]=
{"QuotedLowerL", "%s\\test file.shlexec", 0x0, 33},
{"QuotedUpperL", "%s\\test file.shlexec", 0x0, 33},
/* Test file masked due to space */
{NULL, "%s\\masked file.shlexec", 0x1, 33},
{NULL, NULL, 0}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment