Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Unified Diff: runtime/tests/vm/testcfg.py

Issue 8227031: fix build break for running vm tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698