diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2017-11-15 08:24:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-15 08:24:29 +0000 |
commit | 66a2773d89c689d1b8740aa2388164582e9ccb6c (patch) | |
tree | 6d427256960f314d8ac7152f7497f3f6ea033811 /3rd_party/ixia | |
parent | 31770a64cd8a5c40ee3657ac97e87a900f7aeca5 (diff) | |
parent | b1534957e463b5e34957a8d48ce5c6b0552ffbb4 (diff) |
Merge "teststeps: Improvements and bugfixing of teststeps"
Diffstat (limited to '3rd_party/ixia')
-rw-r--r-- | 3rd_party/ixia/ixnetrfc2544.tcl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/3rd_party/ixia/ixnetrfc2544.tcl b/3rd_party/ixia/ixnetrfc2544.tcl index 73e6d780..c47e8fc1 100644 --- a/3rd_party/ixia/ixnetrfc2544.tcl +++ b/3rd_party/ixia/ixnetrfc2544.tcl @@ -113,7 +113,7 @@ proc startRfc2544Test { testSpec trafficSpec } { set loadType custom } - set learningFrames True + set learningFrames [dict get $testSpec learningFrames] set L2CountValue 1 set L2Increment False @@ -150,6 +150,7 @@ proc startRfc2544Test { testSpec trafficSpec } { } } + set flowControl [dict get $testSpec flowControl] set fastConvergence True set convergenceDuration [expr $duration/10] @@ -403,7 +404,7 @@ proc startRfc2544Test { testSpec trafficSpec } { -txIgnoreRxLinkFaults False \ -loopback False \ -enableLASIMonitoring False \ - -enabledFlowControl True + -enabledFlowControl $flowControl ixNet setMultiAttrs $sg_vport/l1Config/tenGigLan/oam \ -tlvType {00} \ -linkEvents False \ @@ -432,7 +433,7 @@ proc startRfc2544Test { testSpec trafficSpec } { -txIgnoreRxLinkFaults False \ -loopback False \ -enableLASIMonitoring False \ - -enabledFlowControl False + -enabledFlowControl $flowControl ixNet setMultiAttrs $sg_vport/l1Config/fortyGigLan/fcoe \ -supportDataCenterMode False \ -priorityGroupSize priorityGroupSize-8 \ @@ -784,7 +785,7 @@ proc startRfc2544Test { testSpec trafficSpec } { -txIgnoreRxLinkFaults False \ -loopback False \ -enableLASIMonitoring False \ - -enabledFlowControl False + -enabledFlowControl $flowControl ixNet setMultiAttrs $sg_vport/l1Config/tenGigLan/oam \ -tlvType {00} \ -linkEvents False \ @@ -813,7 +814,7 @@ proc startRfc2544Test { testSpec trafficSpec } { -txIgnoreRxLinkFaults False \ -loopback False \ -enableLASIMonitoring False \ - -enabledFlowControl False + -enabledFlowControl $flowControl ixNet setMultiAttrs $sg_vport/l1Config/fortyGigLan/fcoe \ -supportDataCenterMode False \ -priorityGroupSize priorityGroupSize-8 \ |