Explorar o código

Don't trim response in travis logs

Pēteris Ņikiforovs %!s(int64=10) %!d(string=hai) anos
pai
achega
0037eca384
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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
     p = subprocess.Popen(["curl", "-m", "15", "-s", url], stdout=PIPE, stderr=PIPE)
     (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
   
   def verify(self, base_url):