X-Git-Url: https://git.ucc.asn.au/?p=progcomp2012.git;a=blobdiff_plain;f=judge%2Fsimulator%2Fsimulate.py;h=e87259ec7324f618e4fd6055b19fd9a52a358e9c;hp=d8db77568245fd82bb17c76a090527871f13125f;hb=df9b2d14b2e4e5ea2e99614e44151295bcf4956c;hpb=3b7e8befa3c75a9ac0aac03dc527c6637dd5fcd7 diff --git a/judge/simulator/simulate.py b/judge/simulator/simulate.py index d8db775..e87259e 100755 --- a/judge/simulator/simulate.py +++ b/judge/simulator/simulate.py @@ -258,7 +258,8 @@ for roundNumber in range(totalRounds, totalRounds + nRounds): logFile = logDirectory + "round"+str(roundNumber) + "/"+red["name"]+".vs."+blue["name"]+"."+str(gameID) errorLog = [logDirectory + "error/" + red["name"] + "."+str(gameID), logDirectory + "error/" + blue["name"] + "."+str(gameID)] #Run the game, outputting to logFile; stderr of (both) AI programs is directed to logFile.stderr - outline = os.popen(managerPath + " -o " + logFile + " -T " + str(timeoutValue) + " \"" + red["path"] + "\" \"" + blue["path"] + "\" 2>> " + logFile+".stderr", "r").read() + outline = os.popen(managerPath + " -m 1000 -o " + logFile + " -T " + str(timeoutValue) + " \"" + red["path"] + "\" \"" + blue["path"] + "\" 2>> " + logFile+".stderr", "r").read() + #os.system("mv tmp.mp4 " + logFile + ".mp4") #If there were no errors, get rid of the stderr file