فهرست منبع

Don't trim response in travis logs

Pēteris Ņikiforovs 10 سال پیش
والد
کامیت
0037eca384
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      toolset/benchmark/test_types/framework_test_type.py

+ 2 - 1
toolset/benchmark/test_types/framework_test_type.py

@@ -75,7 +75,8 @@ class FrameworkTestType:
     # Get response body
     # Get response body
     p = subprocess.Popen(["curl", "-m", "15", "-s", url], stdout=PIPE, stderr=PIPE)
     p = subprocess.Popen(["curl", "-m", "15", "-s", url], stdout=PIPE, stderr=PIPE)
     (out, err) = p.communicate()
     (out, err) = p.communicate()
-    print "  Response (trimmed to 40 bytes): \"%s\"" % out[:40]
+    #print "  Response (trimmed to 40 bytes): \"%s\"" % out[:40]
+    print "  Response: \"%s\"" % out
     return out
     return out
   
   
   def verify(self, base_url):
   def verify(self, base_url):