Skip to content

Commit 645da50

Browse files
committed
improved script
1 parent 1d1b8ac commit 645da50

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

experiments/wb-exp.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,7 @@ def addJobBody(port, sut, seed, setting, configName):
616616
params += " --jaCoCoOutputFile="+str(pathlib.PurePath(os.path.abspath("./exec/"+sut.name+"__wb"+configName+"__"+str(port)+"__jacoco.exec")).as_posix())
617617
# params += " --enableBasicAssertions=false" # TODO need to deal with flakiness
618618

619+
params += fixedCustomParams()
619620

620621
JAVA = getJavaExeByJDK(JDK_21)
621622
command = JAVA + EVOMASTER_JAVA_OPTIONS + params + " >> " + em_log + " 2>&1"
@@ -777,6 +778,13 @@ def is_float(input):
777778
### we want to run.
778779
############################################################################
779780

781+
def fixedCustomParams():
782+
# new, extra custom params that applies to ALL experiments
783+
params = ""
784+
# params += " --useExperimentalOracles true"
785+
return params
786+
787+
780788
def getConfigs():
781789

782790
# array of configuration objects. We will run experiments for each of

0 commit comments

Comments
 (0)