| Index: test/cctest/testcfg.py
|
| diff --git a/test/cctest/testcfg.py b/test/cctest/testcfg.py
|
| index 1d03a845f53d0bd1f8bdb8c81c0e8bc66a74ddfd..7bcccfa2cc6dcc4ffa91367bb253c633a8c08e11 100644
|
| --- a/test/cctest/testcfg.py
|
| +++ b/test/cctest/testcfg.py
|
| @@ -47,10 +47,10 @@ class CcTestSuite(testsuite.TestSuite):
|
| def ListTests(self, context):
|
| shell = os.path.abspath(os.path.join(context.shell_dir, self.shell()))
|
| if utils.IsWindows():
|
| - shell += '.exe'
|
| - output = commands.Execute([context.command_prefix,
|
| - shell,
|
| - '--list',
|
| + shell += ".exe"
|
| + output = commands.Execute(context.command_prefix +
|
| + [shell,
|
| + "--list",
|
| context.extra_flags])
|
| if output.exit_code != 0:
|
| print output.stdout
|
|
|