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

Unified Diff: tests/stub-generator/testcfg.py

Issue 8273039: Report missing dartc on stderr so junit tests work in debug mode. (Closed) Base URL: http://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: tests/stub-generator/testcfg.py
===================================================================
--- tests/stub-generator/testcfg.py (revision 432)
+++ tests/stub-generator/testcfg.py (working copy)
@@ -5,6 +5,7 @@
import os
import re
import shutil
+import sys
import tempfile
import test
@@ -79,7 +80,7 @@
def ListTests(self, current_path, path, mode, arch):
dartc = self.context.GetDartC(mode, 'dartc')
if not os.access(dartc[0], os.X_OK):
- print "Can't find dartc at", str(dartc) + ", skipping"
+ print >> sys.stderr, "Can't find dartc at", str(dartc) + ", skipping"
return []
tests = []
for root, dirs, files in os.walk(join(self.root, 'src')):
« 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