kernel32/tests: Avoid testing the D: drive which may not exist.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d08a1da22a
commit
9ae90b354c
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue