msvcp140/tests: Fix _Syserror_map(0) test failure in newest msvcp140.
This commit is contained in:
parent
1d917529f1
commit
c0598baa87
1 changed files with 2 additions and 0 deletions
|
@ -1396,6 +1396,8 @@ static void test__Syserror_map(void)
|
|||
|
||||
r1 = p__Syserror_map(0);
|
||||
ok(r1 != NULL, "_Syserror_map(0) returned NULL\n");
|
||||
r1 = p__Syserror_map(1233);
|
||||
ok(r1 != NULL, "_Syserror_map(1233) returned NULL\n");
|
||||
r2 = p__Syserror_map(1234);
|
||||
ok(r2 != NULL, "_Syserror_map(1234) returned NULL\n");
|
||||
ok(r1 == r2, "r1 = %p(%s), r2 = %p(%s)\n", r1, r1, r2, r2);
|
||||
|
|
Loading…
Add table
Reference in a new issue