Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions tests/route/test_duplicate_route.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,18 +92,15 @@ def verify_expected_loganalyzer_logs(
loganalyzer: Loganalyzer utility fixture
"""
expectRegex = [
]
ignoreRegex = [
".*ERR.* create failed, object already exists.*",
".*ERR.* bulkCreate: Failed to create object.*",
".*ERR.* api SAI_COMMON_API_BULK_CREATE failed in syncd mode.*",
".*ERR.* meta_generic_validation_create: object key SAI_OBJECT_TYPE_ROUTE_ENTRY:.* already exists.*",
".*ERR.* create_internal: create failed, object already exists, object type: SAI_OBJECT_TYPE_ROUTE_ENTRY.*",
".*ERR.* meta_sai_validate_route_entry:.* already exists.*",
".*ERR.* bulkCreate: Failed to create object with type.*",
".*ERR.* SAI_COMMON_API_BULK_CREATE failed in syncd mode.*",
".*ERR.* flush_creating_entries: EntityBulker.flush create entries failed.*",
".*ERR.* handleSaiFailure: Encountered failure in create operation.*",
".*ERR.* Failed to add UC route .* Entry Already Exists.",
r".*ERR.* uc_route_set_async_pre_send_validate .* \[Entry Already Exists\].",
".*ERR.* mlnx_create_route_async .* Entry Already Exists.",
".*ERR.* object key SAI_OBJECT_TYPE_ROUTE_ENTRY:.* already exists.*", # TODO move to expectRegex
".*ERR.* addRoutePost: Failed to create route.*", # TODO move to expectRegex
".*ERR.* addRoutePost: Failed to create route.*",
]
ignoreRegex = [
]
if loganalyzer:
# Skip if loganalyzer is disabled
Expand Down