Skip to content

Commit

Permalink
fix: bump memory limit for Cisco 8000 supervisor (#16206)
Browse files Browse the repository at this point in the history
During recent nightly runs, we observed that the Cisco 8000 supervisor had an average memory usage of 59.7% (calculated from the values 60.3, 59.9, 58.9, 59.2, 59.8, and 60.2). Since the memory threshold is set at 60%, this resulted in two failures. To ensure the stability of the tests, we propose increasing the memory threshold for the Cisco 8000 supervisor to 65%.
  • Loading branch information
cyw233 committed Jan 3, 2025
1 parent d671010 commit b419663
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/platform_tests/test_cpu_memory_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def setup_thresholds(duthosts, enum_rand_one_per_hwsku_hostname):
if duthost.facts['platform'] in ('x86_64-arista_7050_qx32', 'x86_64-kvm_x86_64-r0', 'x86_64-arista_7050_qx32s',
'x86_64-cel_e1031-r0', 'x86_64-arista_7800r3a_36dm2_lc') or is_asan:
memory_threshold = 90
if duthost.facts['platform'] in ('x86_64-mlnx_msn4600c-r0', 'x86_64-mlnx_msn3800-r0'):
if duthost.facts['platform'] in ('x86_64-mlnx_msn4600c-r0', 'x86_64-mlnx_msn3800-r0', 'x86_64-8800_rp_o-r0',
'x86_64-8800_rp-r0'):
memory_threshold = 65
if duthost.facts['platform'] in ('x86_64-arista_7260cx3_64'):
high_cpu_consume_procs['syncd'] = 80
Expand Down

0 comments on commit b419663

Please sign in to comment.