tag the output dir to avoid collision with executable name

stl_dim
Marius Kintel 2010-08-30 23:57:47 +02:00
parent aa71ac8e0d
commit 6536184759
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ def compare_text(expected, actual):
def run_test(testname, cmd, args):
cmdname = os.path.split(options.cmd)[1]
outputdir = os.path.join(os.getcwd(), cmdname)
outputdir = os.path.join(os.getcwd(), cmdname + "-output")
actualfilename = os.path.join(outputdir, testname + "-actual" + options.suffix)
expecteddir = os.path.join(options.regressiondir, cmdname)
expectedfilename = os.path.join(expecteddir, testname + "-expected" + options.suffix)