| Index: tools/testrunner/local/execution.py
|
| diff --git a/tools/testrunner/local/execution.py b/tools/testrunner/local/execution.py
|
| index 0adf9c90718744d395b538dcb647f513e9891abb..6004367913099c864a701ce094e7e1daf2ff7609 100644
|
| --- a/tools/testrunner/local/execution.py
|
| +++ b/tools/testrunner/local/execution.py
|
| @@ -168,11 +168,10 @@ class Runner(object):
|
| if utils.IsWindows():
|
| shell += ".exe"
|
| cmd = ([self.context.command_prefix] +
|
| - [os.path.join(self.context.shell_dir, shell)] +
|
| + [os.path.abspath(os.path.join(self.context.shell_dir, shell))] +
|
| d8testflag +
|
| test.suite.GetFlagsForTestCase(test, self.context) +
|
| [self.context.extra_flags])
|
| - cmd = [ c for c in cmd if c != "" ]
|
| return cmd
|
|
|
|
|
|
|