diff options
-rw-r--r-- | .gitignore | 8 | ||||
-rwxr-xr-x | scripts/automation/trex_control_plane/common/trex_streams.py | 2 |
2 files changed, 8 insertions, 2 deletions
@@ -25,6 +25,9 @@ scripts/doc/* scripts/mock-* scripts/automation/trex_control_plane/doc/_build/* +scripts/exp/http1_with_option_ipv6.pcap +scripts/exp/http1_with_option.pcap +scripts/stl/exportedFile.pcap scripts/exp/stl_multi_burst1-0.erf scripts/exp/stl_multi_pkt1-0.erf scripts/exp/stl_multi_pkt2-0.erf @@ -56,7 +59,10 @@ scripts/exp/stl_vm_random_size_64_128.pcap scripts/automation/regression/reports/unit_test.xml scripts/automation/regression/unit_tests/functional_tests/test.pcap - +#files generated by global +src/GPATH +src/GRTAGS +src/GTAGS diff --git a/scripts/automation/trex_control_plane/common/trex_streams.py b/scripts/automation/trex_control_plane/common/trex_streams.py index caeaa8cf..9b10995b 100755 --- a/scripts/automation/trex_control_plane/common/trex_streams.py +++ b/scripts/automation/trex_control_plane/common/trex_streams.py @@ -518,6 +518,6 @@ class HACKSTLStream(STLStream): packet = CTRexPktBuilder() packet.load_from_stream_obj(stream_pack.stream) - super(HACKSTLStream, self).__init__(packet) + super(HACKSTLStream, self).__init__(packet, stream_id = stream_pack.stream_id) self.fields = stream_pack.stream |