Commit dd52e52d authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

mapi32: Fix failing tests on some Win9x versions.

parent fc5ea773
......@@ -627,7 +627,8 @@ static void test_LPropCompareProp(void)
}
iRet = pLPropCompareProp(&pvLeft, &pvRight);
ok(iRet == iExp, "pt %d (%d,%d): expected %d, got %d\n", ptTypes[i],
ok(iRet == iExp || broken(iRet == 0) /* Win9x */,
"pt %d (%d,%d): expected %d, got %d\n", ptTypes[i],
LPCProp_Results[j].lVal, LPCProp_Results[j].rVal, iExp, iRet);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment