浏览代码

On chutney verify failure, inform user about debug mode

When chutney verify fails, tell the user how to activate debug mode
by editing the source code.

Eventually, we'll make debug mode an argument, see #15418.
teor 10 年之前
父节点
当前提交
39d47297ae
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      lib/chutney/TorNet.py

+ 4 - 0
lib/chutney/TorNet.py

@@ -899,6 +899,10 @@ class Network(object):
         print("Verifying data transmission:")
         status = self._verify_traffic()
         print("Transmission: %s" % ("Success" if status else "Failure"))
+        if not status:
+            # TODO: allow the debug flag to be passed as an argument to
+            # src/test/test-network.sh and chutney
+            print("Set 'debug_flag = True' in Traffic.py to diagnose.")
         return status
 
     def _verify_traffic(self):