Browse Source

Inform user before accessing URL for testing

Hamilton Turner 10 years ago
parent
commit
7e6ca942ae
1 changed files with 1 additions and 0 deletions
  1. 1 0
      toolset/benchmark/test_types/framework_test_type.py

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

@@ -63,6 +63,7 @@ class FrameworkTestType:
     # Use -i to output response with headers
     # Don't use -f so that the HTTP response code is ignored.
     # Use -sS to hide progress bar, but show errors.
+    print "Accessing URL %s"
     p = subprocess.Popen(["curl", "-m", "15", "-i", "-sS", url], stderr=PIPE, stdout=PIPE)
     (out, err) = p.communicate()
     self.err.write(err+'\n')