mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:26:20 +00:00
-sync kernel32_winetest with wine 1.1.32
svn path=/trunk/; revision=43744
This commit is contained in:
parent
01a9e7493e
commit
abc34f7dad
15 changed files with 451 additions and 295 deletions
|
@ -35,8 +35,6 @@
|
|||
|
||||
#include "wine/test.h"
|
||||
|
||||
#define PROCESS_NAME_NATIVE 1
|
||||
|
||||
#define expect_eq_d(expected, actual) \
|
||||
do { \
|
||||
int value = (actual); \
|
||||
|
@ -957,7 +955,8 @@ static void test_CommandLine(void)
|
|||
ok(!ret, "CreateProcessA unexpectedly succeeded\n");
|
||||
ok(GetLastError() == ERROR_FILE_NOT_FOUND ||
|
||||
GetLastError() == ERROR_PATH_NOT_FOUND /* NT4 */ ||
|
||||
GetLastError() == ERROR_BAD_PATHNAME /* Win98 */,
|
||||
GetLastError() == ERROR_BAD_PATHNAME /* Win98 */ ||
|
||||
GetLastError() == ERROR_INVALID_PARAMETER /* Win7 */,
|
||||
"Expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
|
||||
|
||||
strcpy(buffer, "doesnotexist.exe");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue