diff options
author | Marius Kintel <marius@kintel.net> | 2010-08-30 21:57:47 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-10-31 00:42:39 (GMT) |
commit | 65361847597ae824a577f73fb9a179c3b2a3c09f (patch) | |
tree | d92a6babdc0487784414fc6e26fd834b110e658d /tests/test_cmdline_tool.py | |
parent | aa71ac8e0d3a6913536f57464a2617de11f92677 (diff) |
tag the output dir to avoid collision with executable name
Diffstat (limited to 'tests/test_cmdline_tool.py')
-rwxr-xr-x | tests/test_cmdline_tool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline_tool.py b/tests/test_cmdline_tool.py index 47983d9..c1b0eb2 100755 --- a/tests/test_cmdline_tool.py +++ b/tests/test_cmdline_tool.py @@ -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) |