Author: sir_richard
Date: Mon Feb 20 01:13:50 2012
New Revision: 55730
URL:
http://svn.reactos.org/svn/reactos?rev=55730&view=rev
Log:
[NTDLL_WINETEST]: Skip an obviously nonsensical test of trying to sprintf into NULL.
Modified:
trunk/rostests/winetests/ntdll/rtl.c
Modified: trunk/rostests/winetests/ntdll/rtl.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/ntdll/rtl.c?rev…
==============================================================================
--- trunk/rostests/winetests/ntdll/rtl.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/ntdll/rtl.c [iso-8859-1] Mon Feb 20 01:13:50 2012
@@ -1173,10 +1173,13 @@
len = strlen(buffer);
ok(res == (buffer + len), "got %p with '%s' (expected %p)\n", res,
buffer, buffer + len);
- res = pRtlIpv4AddressToStringA(&ip, NULL);
- ok( (res == (char *)~0) ||
- broken(res == (char *)0 + len), /* XP and w2003 */
- "got %p (expected ~0)\n", res);
+ if (0) {
+ /* this crashes in windows */
+ res = pRtlIpv4AddressToStringA(&ip, NULL);
+ ok( (res == (char *)~0) ||
+ broken(res == (char *)0 + len), /* XP and w2003 */
+ "got %p (expected ~0)\n", res);
+ }
if (0) {
/* this crashes in windows */