Skip to content

Commit 98d5610

Browse files
committed
fixed var name
1 parent f787769 commit 98d5610

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

experiments/bb-exp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def createJobs():
350350
RESTLER="restler"
351351
EMREST="emrest"
352352

353-
353+
### NOTE: this function MUST be kept in sync between wb-exp.py and bb-exp.py
354354
def getTestDir(tool,sutname,port):
355355
return pathlib.PurePath(TESTS_DIR + "/"+ tool + "/" + sutname + "/" + str(port)).as_posix()
356356

experiments/wb-exp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,8 @@ def __init__(self, name, platform):
309309
SCRIPT_DIR = BASE_DIR + "/scripts"
310310
os.makedirs(SCRIPT_DIR)
311311

312-
TEST_DIR = BASE_DIR + "/tests"
313-
os.makedirs(TEST_DIR)
312+
TESTS_DIR = BASE_DIR + "/tests"
313+
os.makedirs(TESTS_DIR)
314314

315315
### NOTE: this function MUST be kept in sync between wb-exp.py and bb-exp.py
316316
def getTestDir(tool,sutname,port):
@@ -328,7 +328,7 @@ def getTestDir(tool,sutname,port):
328328

329329
REPORT_DIR = str(pathlib.PurePath(REPORT_DIR).as_posix())
330330
SCRIPT_DIR = str(pathlib.PurePath(SCRIPT_DIR).as_posix())
331-
TEST_DIR = str(pathlib.PurePath(TEST_DIR).as_posix())
331+
TESTS_DIR = str(pathlib.PurePath(TESTS_DIR).as_posix())
332332
LOG_DIR = str(pathlib.PurePath(LOG_DIR).as_posix())
333333

334334
#Due to Windows limitations (ie crappy FS), we need to copy JARs over

0 commit comments

Comments
 (0)