From 4715b86a6e165373e8b8b6d52095637a3882a942 Mon Sep 17 00:00:00 2001 From: imarom Date: Thu, 28 Jan 2016 06:08:24 -0500 Subject: added API: release, remove_stream --- scripts/api/stl/examples/stl_simple_burst.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/api') diff --git a/scripts/api/stl/examples/stl_simple_burst.py b/scripts/api/stl/examples/stl_simple_burst.py index 3b394d10..2ca71b44 100644 --- a/scripts/api/stl/examples/stl_simple_burst.py +++ b/scripts/api/stl/examples/stl_simple_burst.py @@ -37,7 +37,7 @@ def simple_burst (): try: - #c.logger.set_verbose(c.logger.VERBOSE_NORMAL) + #c.set_verbose("high") # create two bursts and link them s1 = STLStream(packet = pkt_bld, @@ -56,7 +56,7 @@ def simple_burst (): c.reset(ports = [0, 1]) # add both streams to ports - c.add_streams([s1, s2], ports = [0, 1]) + stream_ids = c.add_streams([s1, s2], ports = [0, 1]) # run 5 times for i in xrange(1, 6): -- cgit From 1a935f2987f2885fc8af29ed866ec0b2125ee85c Mon Sep 17 00:00:00 2001 From: Yaroslav Brustinov Date: Sun, 31 Jan 2016 16:07:53 +0200 Subject: add driver for Ubuntu 14.04.3, remove seconds from regression start time at HTML report, HLTAPI improvements --- scripts/api/stl/examples/stl_bi_dir_flows.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/api') diff --git a/scripts/api/stl/examples/stl_bi_dir_flows.py b/scripts/api/stl/examples/stl_bi_dir_flows.py index 429445e6..38cb36dd 100644 --- a/scripts/api/stl/examples/stl_bi_dir_flows.py +++ b/scripts/api/stl/examples/stl_bi_dir_flows.py @@ -90,11 +90,11 @@ def simple_burst (): # read the stats after the test stats = c.get_stats() - print json.dumps(stats["port 0"], indent = 4, separators=(',', ': '), sort_keys = True) - print json.dumps(stats["port 1"], indent = 4, separators=(',', ': '), sort_keys = True) + print json.dumps(stats[0], indent = 4, separators=(',', ': '), sort_keys = True) + print json.dumps(stats[1], indent = 4, separators=(',', ': '), sort_keys = True) - lost_a = stats["port 0"]["opackets"] - stats["port 1"]["ipackets"] - lost_b = stats["port 1"]["opackets"] - stats["port 0"]["ipackets"] + lost_a = stats[0]["opackets"] - stats[1]["ipackets"] + lost_b = stats[1]["opackets"] - stats[0]["ipackets"] print "\npackets lost from 0 --> 1: {0} pkts".format(lost_a) print "packets lost from 1 --> 0: {0} pkts".format(lost_b) -- cgit