From 16927ae538daeadca3d0b69abd85e55d196f3c55 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 20 Feb 2014 03:01:05 +0000 Subject: [PATCH] [SCons] Workaround for SCons bug under Cygwin See SCons Issue 2911. http://scons.tigris.org/issues/show_bug.cgi?id=2911 --- test/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/SConscript b/test/SConscript index f2b29a789..84fe9d4d1 100644 --- a/test/SConscript +++ b/test/SConscript @@ -107,7 +107,8 @@ def addPythonTest(testname, subdir, script, interpreter, outfile, testenv = localenv.Clone() passedFile = File(pjoin(subdir, '%s.passed' % testname)) PASSED_FILES[testname] = str(passedFile) - run_program = testenv.Command(passedFile, pjoin(subdir, script), scriptRunner) + + run_program = testenv.Command(passedFile, pjoin('#test', subdir, script), scriptRunner) for dep in dependencies: if isinstance(dep, str): dep = File(pjoin(subdir, dep))