From 84b7368eeac5522cf210eec5234982f401ec7fe7 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Mon, 12 Apr 2021 17:38:53 +0530 Subject: [PATCH] test: reduce vr traceroute hops Signed-off-by: Abhishek Kumar --- test/integration/smoke/test_diagnostics.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/integration/smoke/test_diagnostics.py b/test/integration/smoke/test_diagnostics.py index 176f74b9b335..b2de339bb5b1 100644 --- a/test/integration/smoke/test_diagnostics.py +++ b/test/integration/smoke/test_diagnostics.py @@ -429,11 +429,11 @@ def test_09_arping_in_cpvm(self): @attr(tags=["advanced", "advancedns", "ssh", "smoke"], required_hardware="true") def test_10_traceroute_in_vr(self): ''' - Test Arping command execution in VR + Test traceroute command execution in VR ''' # Validate the following: - # 1. Arping command is executed remotely on VR + # 1. Traceroute command is executed remotely on VR list_router_response = list_routers( self.apiclient, @@ -452,13 +452,13 @@ def test_10_traceroute_in_vr(self): cmd.targetid = router.id cmd.ipaddress = '8.8.4.4' cmd.type = 'traceroute' - cmd.params = "-m 10" + cmd.params = "-m 5" cmd_response = self.apiclient.runDiagnostics(cmd) self.assertEqual( '0', cmd_response.exitcode, - 'Failed to run remote Arping in VR') + 'Failed to run remote Traceroute in VR') @attr(tags=["advanced", "advancedns", "ssh", "smoke"], required_hardware="true") def test_11_traceroute_in_ssvm(self): @@ -488,7 +488,7 @@ def test_11_traceroute_in_ssvm(self): cmd.targetid = ssvm.id cmd.ipaddress = '8.8.4.4' cmd.type = 'traceroute' - cmd.params = '-m 10' + cmd.params = '-m 5' cmd_response = self.apiclient.runDiagnostics(cmd) self.assertEqual( @@ -525,7 +525,7 @@ def test_12_traceroute_in_cpvm(self): cmd.targetid = cpvm.id cmd.ipaddress = '8.8.4.4' cmd.type = 'traceroute' - cmd.params = '-m 10' + cmd.params = '-m 5' cmd_response = self.apiclient.runDiagnostics(cmd) self.assertEqual(