Commit 392b8cc6 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

snmpapi/tests: Use win_skip() to skip over unimplemented functionality.

parent a49dd715
......@@ -550,24 +550,24 @@ START_TEST(util)
test_SnmpUtilOidToA();
if (!pSnmpUtilAsnAnyCpy || !pSnmpUtilAsnAnyFree)
skip("SnmpUtilAsnAnyCpy and/or SnmpUtilAsnAnyFree not available\n");
win_skip("SnmpUtilAsnAnyCpy and/or SnmpUtilAsnAnyFree not available\n");
else
test_SnmpUtilAsnAnyCpyFree();
if (!pSnmpUtilOctetsCpy || !pSnmpUtilOctetsFree)
skip("SnmpUtilOctetsCpy and/or SnmpUtilOctetsFree not available\n");
win_skip("SnmpUtilOctetsCpy and/or SnmpUtilOctetsFree not available\n");
else
test_SnmpUtilOctetsCpyFree();
test_SnmpUtilOidCpyFree();
if (!pSnmpUtilOctetsNCmp)
skip("SnmpUtilOctetsNCmp not available\n");
win_skip("SnmpUtilOctetsNCmp not available\n");
else
test_SnmpUtilOctetsNCmp();
if (!pSnmpUtilOctetsCmp)
skip("SnmpUtilOctetsCmp not available\n");
win_skip("SnmpUtilOctetsCmp not available\n");
else
test_SnmpUtilOctetsCmp();
......
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