From 8bbf0621549d384290a791228dd085dcc29eb03e Mon Sep 17 00:00:00 2001 From: Yonghong Song Date: Mon, 10 Aug 2015 11:19:53 -0700 Subject: [PATCH] print out simple_tc success at the end of test Signed-off-by: Yonghong Song --- examples/simple_tc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple_tc.py b/examples/simple_tc.py index 4f0fe0f..f0258e5 100755 --- a/examples/simple_tc.py +++ b/examples/simple_tc.py @@ -5,7 +5,6 @@ from bpf import BPF from pyroute2 import IPRoute -print("Simple program to test pyroute2 IPRoute tc interface") ipr = IPRoute() text = """ @@ -28,3 +27,4 @@ try: name=fn.name, parent="1:", action="ok", classid=1) finally: if "idx" in locals(): ipr.link_remove(idx) +print("BPF tc functionality - SCHED_CLS: OK") -- 2.7.4