When the commit below introduced an API change, the oss-fuzz component was not updated accordingly, leading to failures in the upstream oss-fuzz tests.
For more information on the failure, see: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=71524 Fixes: 252ee0f18211 ("dpif: Fix flow put debug message match content.") Signed-off-by: Eelco Chaudron <[email protected]> --- tests/oss-fuzz/odp_target.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/oss-fuzz/odp_target.c b/tests/oss-fuzz/odp_target.c index ae61cdca3..0d615f8a2 100644 --- a/tests/oss-fuzz/odp_target.c +++ b/tests/oss-fuzz/odp_target.c @@ -81,7 +81,8 @@ parse_keys(bool wc_keys, const char *in) ds_init(&out); if (wc_keys) { odp_flow_format(odp_key.data, odp_key.size, - odp_mask.data, odp_mask.size, NULL, &out, false); + odp_mask.data, odp_mask.size, NULL, &out, false, + false); } else { odp_flow_key_format(odp_key.data, odp_key.size, &out); } -- 2.46.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
