kernel32/tests: Avoid testing the D: drive which may not exist.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2015-11-24 00:23:12 +09:00
parent d08a1da22a
commit 9ae90b354c
1 changed files with 3 additions and 3 deletions

View File

@ -664,9 +664,9 @@ static void test_GetVolumePathNameA(void)
"\\\\ReallyBogus\\InvalidDrive:\\" /* win2k, winxp */, sizeof(volume_path),
ERROR_INVALID_NAME, NO_ERROR
},
{ /* test 15: poor quality input, valid output, valid output length, different drive */
"D::", "D:\\", sizeof(volume_path),
NO_ERROR, NO_ERROR
{ /* test 15: poor quality input, valid output, valid (but short) output length */
"C::", "C:\\", 4,
NO_ERROR, ERROR_MORE_DATA
},
{ /* test 16: unused drive letter */
"M::", "C:\\", 4,