From b0f5bad55ba76f9a0a32399ed8871399de57954d Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Sat, 25 Aug 2018 21:45:25 +0200 Subject: ioam: one api test plugin instead of five Change-Id: I715dade7c81f2ba6a0a5297123f588563833c3fb Signed-off-by: Damjan Marion --- .../export-vxlan-gpe/vxlan_gpe_ioam_export_test.c | 2 +- src/plugins/ioam/export/ioam_export_test.c | 2 +- src/plugins/ioam/ioam_test.c | 47 ++++++++++++++++++++++ src/plugins/ioam/lib-pot/pot_test.c | 3 +- src/plugins/ioam/lib-trace/trace_test.c | 2 +- src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_test.c | 2 +- src/plugins/ioam/udp-ping/udp_ping_test.c | 2 +- 7 files changed, 54 insertions(+), 6 deletions(-) create mode 100644 src/plugins/ioam/ioam_test.c (limited to 'src/plugins/ioam') diff --git a/src/plugins/ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c b/src/plugins/ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c index 7e66329a998..85e1ee37bcc 100644 --- a/src/plugins/ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c +++ b/src/plugins/ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c @@ -151,7 +151,7 @@ vxlan_gpe_ioam_vat_api_hookup (vat_main_t * vam) } clib_error_t * -vat_plugin_register (vat_main_t * vam) +vxlan_gpe_ioam_export_vat_plugin_register (vat_main_t * vam) { export_test_main_t *sm = &export_test_main; u8 *name; diff --git a/src/plugins/ioam/export/ioam_export_test.c b/src/plugins/ioam/export/ioam_export_test.c index 70efc7e3e4e..2af4eeed51a 100644 --- a/src/plugins/ioam/export/ioam_export_test.c +++ b/src/plugins/ioam/export/ioam_export_test.c @@ -153,7 +153,7 @@ ioam_export_vat_api_hookup (vat_main_t * vam) } clib_error_t * -vat_plugin_register (vat_main_t * vam) +ioam_export_vat_plugin_register (vat_main_t * vam) { export_test_main_t *sm = &export_test_main; u8 *name; diff --git a/src/plugins/ioam/ioam_test.c b/src/plugins/ioam/ioam_test.c new file mode 100644 index 00000000000..323c8d75738 --- /dev/null +++ b/src/plugins/ioam/ioam_test.c @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2018 Cisco and/or its affiliates. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include +#include + +clib_error_t * vxlan_gpe_ioam_export_vat_plugin_register (vat_main_t * vam); +clib_error_t * pot_vat_plugin_register (vat_main_t *vam); +clib_error_t * trace_vat_plugin_register (vat_main_t * vam); +clib_error_t * vxlan_gpe_vat_plugin_register (vat_main_t * vam); +clib_error_t * udp_ping_vat_plugin_register (vat_main_t * vam); + +clib_error_t * +vat_plugin_register (vat_main_t *vam) +{ + clib_error_t *err; + + if ((err = pot_vat_plugin_register (vam))) + return err; + + if ((err = vxlan_gpe_ioam_export_vat_plugin_register (vam))) + return err; + + if ((err = trace_vat_plugin_register (vam))) + return err; + + if ((err = vxlan_gpe_vat_plugin_register(vam))) + return err; + + if ((err = udp_ping_vat_plugin_register (vam))) + return err; + + return 0; +} diff --git a/src/plugins/ioam/lib-pot/pot_test.c b/src/plugins/ioam/lib-pot/pot_test.c index 2b528ece54e..e02640b44dc 100644 --- a/src/plugins/ioam/lib-pot/pot_test.c +++ b/src/plugins/ioam/lib-pot/pot_test.c @@ -314,7 +314,8 @@ pot_vat_api_hookup (vat_main_t *vam) #undef _ } -clib_error_t * vat_plugin_register (vat_main_t *vam) +clib_error_t * +pot_vat_plugin_register (vat_main_t *vam) { pot_test_main_t * sm = &pot_test_main; u8 * name; diff --git a/src/plugins/ioam/lib-trace/trace_test.c b/src/plugins/ioam/lib-trace/trace_test.c index f598b7ee936..060c621836a 100644 --- a/src/plugins/ioam/lib-trace/trace_test.c +++ b/src/plugins/ioam/lib-trace/trace_test.c @@ -226,7 +226,7 @@ ioam_trace_vat_api_hookup (vat_main_t * vam) } clib_error_t * -vat_plugin_register (vat_main_t * vam) +trace_vat_plugin_register (vat_main_t * vam) { trace_test_main_t *sm = &trace_test_main; u8 *name; diff --git a/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_test.c b/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_test.c index fdb4cf63b8b..ef24a500b9f 100644 --- a/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_test.c +++ b/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_test.c @@ -521,7 +521,7 @@ vxlan_gpe_vat_api_hookup (vat_main_t * vam) } clib_error_t * -vat_plugin_register (vat_main_t * vam) +vxlan_gpe_vat_plugin_register (vat_main_t * vam) { vxlan_gpe_test_main_t *sm = &vxlan_gpe_test_main; u8 *name; diff --git a/src/plugins/ioam/udp-ping/udp_ping_test.c b/src/plugins/ioam/udp-ping/udp_ping_test.c index 1ab8eec954a..9a5375cda0d 100644 --- a/src/plugins/ioam/udp-ping/udp_ping_test.c +++ b/src/plugins/ioam/udp-ping/udp_ping_test.c @@ -242,7 +242,7 @@ udp_ping_test_api_hookup (vat_main_t * vam) } clib_error_t * -vat_plugin_register (vat_main_t * vam) +udp_ping_vat_plugin_register (vat_main_t * vam) { udp_ping_test_main_t *sm = &udp_ping_test_main; u8 *name; -- cgit 1.2.3-korg