mpExperienceHTTP(S): output time in log file

This commit is contained in:
Quentin De Coninck 2016-04-19 09:53:19 +02:00
parent d6a0334fdc
commit 3b5007f49c
2 changed files with 4 additions and 4 deletions

View File

@ -55,8 +55,8 @@ class MpExperienceHTTP(MpExperience):
return s
def getHTTPClientCmd(self):
s = "time " + MpExperienceHTTP.WGET_BIN + " http://" + self.mpConfig.getServerIP() + \
"/" + self.file + " --no-check-certificate &>" + MpExperienceHTTP.CLIENT_LOG
s = "(time " + MpExperienceHTTP.WGET_BIN + " http://" + self.mpConfig.getServerIP() + \
"/" + self.file + " --no-check-certificate) &>" + MpExperienceHTTP.CLIENT_LOG
print(s)
return s

View File

@ -55,8 +55,8 @@ class MpExperienceHTTPS(MpExperience):
return s
def getHTTPSClientCmd(self):
s = "time " +MpExperienceHTTPS.WGET_BIN + " https://" + self.mpConfig.getServerIP() + \
"/" + self.file + " --no-check-certificate &>" + MpExperienceHTTPS.CLIENT_LOG
s = "(time " +MpExperienceHTTPS.WGET_BIN + " https://" + self.mpConfig.getServerIP() + \
"/" + self.file + " --no-check-certificate) &>" + MpExperienceHTTPS.CLIENT_LOG
print(s)
return s