diff options
| author | Anas Nashif <nashif@intel.com> | 2008-03-03 19:50:31 +0000 |
|---|---|---|
| committer | Anas Nashif <nashif@intel.com> | 2008-03-03 19:50:31 +0000 |
| commit | 6a0fa43a4e637718e923a8e4b3f1b2fe9f5338ce (patch) | |
| tree | 8bcf998e897592b328543d76bbe8f1f06a6b4d51 /tests | |
| parent | 49996770e4878592a3ceca9c48736a4d9774b873 (diff) | |
| download | wsmancli-6a0fa43a4e637718e923a8e4b3f1b2fe9f5338ce.tar.gz wsmancli-6a0fa43a4e637718e923a8e4b3f1b2fe9f5338ce.tar.xz wsmancli-6a0fa43a4e637718e923a8e4b3f1b2fe9f5338ce.zip | |
update with new API support complex filters
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/interop/interop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/interop/interop.c b/tests/interop/interop.c index 3402da4..c537091 100644 --- a/tests/interop/interop.c +++ b/tests/interop/interop.c @@ -121,14 +121,14 @@ static int run_interop_test (WsManClient *cl, WsXmlNodeH scenario, InteropTest i WsXmlNodeH input = ws_xml_get_child(scenario, 0, NULL, "Input"); WsXmlNodeH r = ws_xml_get_child(input, 0, NULL, "ResourceURI"); char *resource_uri = ws_xml_get_node_text(r); - wsmc_action_enumerate_and_pull(cl, resource_uri , options, pull_items, NULL ); + wsmc_action_enumerate_and_pull(cl, resource_uri , options, NULL, pull_items, NULL ); } else if (id == 9) { // 7.2 Optimized Enumerate wsmc_set_action_option(options, FLAG_ENUMERATION_OPTIMIZATION); WsXmlNodeH input = ws_xml_get_child(scenario, 0, NULL, "Input"); WsXmlNodeH r = ws_xml_get_child(input, 0, NULL, "ResourceURI"); char *resource_uri = ws_xml_get_node_text(r); - wsmc_action_enumerate_and_pull(cl, resource_uri , options, pull_items, NULL ); + wsmc_action_enumerate_and_pull(cl, resource_uri , options, NULL, pull_items, NULL ); } else if (id == 10) { // 7.3 Enumerate failure /* @@ -152,14 +152,14 @@ static int run_interop_test (WsManClient *cl, WsXmlNodeH scenario, InteropTest i WsXmlNodeH input = ws_xml_get_child(scenario, 0, NULL, "Input"); WsXmlNodeH r = ws_xml_get_child(input, 0, NULL, "ResourceURI"); char *resource_uri = ws_xml_get_node_text(r); - wsmc_action_enumerate_and_pull(cl, resource_uri , options, pull_items, NULL ); + wsmc_action_enumerate_and_pull(cl, resource_uri , options, NULL, pull_items, NULL ); }else if (id == 16) { // 7.9 Enumerate Polymorphism wsmc_set_action_option(options, FLAG_POLYMORPHISM_NONE); WsXmlNodeH input = ws_xml_get_child(scenario, 0, NULL, "Input"); WsXmlNodeH r = ws_xml_get_child(input, 0, NULL, "ResourceURI"); char *resource_uri = ws_xml_get_node_text(r); - wsmc_action_enumerate_and_pull(cl, resource_uri , options, pull_items, NULL ); + wsmc_action_enumerate_and_pull(cl, resource_uri , options, NULL, pull_items, NULL ); }else if (id == 17) { // 8.1 Invoke WsXmlNodeH input = ws_xml_get_child(scenario, 0, NULL, "Input"); |
