| Index: runtime/tests/vm/testcfg.py
|
| diff --git a/runtime/tests/vm/testcfg.py b/runtime/tests/vm/testcfg.py
|
| index fa0ff011740fdda35f18798f2246ce3e625aa71a..7f4664a50ccfe3611eb0805e16707ecdd7b935f9 100644
|
| --- a/runtime/tests/vm/testcfg.py
|
| +++ b/runtime/tests/vm/testcfg.py
|
| @@ -6,6 +6,7 @@ import os
|
| from os.path import join, exists
|
|
|
| import test
|
| +from testing import test_runner
|
|
|
| class VmTestCase(test.TestCase):
|
| def __init__(self, path, context, mode, arch, flags):
|
| @@ -45,7 +46,7 @@ class VmTestConfiguration(test.TestConfiguration):
|
| if not arch in ['ia32', 'x64', 'arm', 'simarm']:
|
| return []
|
| run_tests = self.context.GetRunTests(mode, arch)
|
| - output = test.Execute(run_tests + ['--list'], self.context)
|
| + output = test_runner.Execute(run_tests + ['--list'], self.context)
|
| if output.exit_code != 0:
|
| print output.stdout
|
| print output.stderr
|
|
|