Beispiel #1
0
 def append(text: str):
     appendTo(validateOutput, text)
 def appendOutput(testFor: str, text: str):
     fileName = "%s.out" % testFor;
     appendTo(runOutputDir / fileName, text)
Beispiel #3
0
 def appendOutput(testNum: int, text: str):
     fileName = "%d.out" % testNum
     appendTo(runOutputDir / fileName, text)