Home | History | Annotate | Download | only in gyp

Lines Matching refs:stdout

48   def display(self, command, stdout=None, stderr=None):
63 sys.stdout.write(s)
64 sys.stdout.flush()
66 def execute(self, command, stdout=None, stderr=None):
82 if stdout is sys.stdout:
83 # Same as passing sys.stdout, except python2.4 doesn't fail on it.
92 # Merge with stdout if stderr isn't specified.
93 suberr = subprocess.STDOUT
99 stdout=subout,
102 if stdout is None:
103 self.stdout = p.stdout.read()
104 elif stdout is not sys.stdout:
105 stdout.write(p.stdout.read())
110 def run(self, command, display=None, stdout=None, stderr=None):
117 return self.execute(command, stdout, stderr)
129 sys.stdout = Unbuffered(sys.stdout)
202 sys.stdout.write('PYTHONPATH=%s\n' % os.environ['PYTHONPATH'])
226 sys.stdout.write('TESTGYP_FORMAT=%s\n' % format)
232 sys.stdout.write('Extra Gyp options: %s\n' % gyp_options)
236 stdout=sys.stdout,
249 sys.stdout.write("\n%s the following test:\n" % description)
252 sys.stdout.write(fmt % (description, len(tests)))
253 sys.stdout.write("\t" + "\n\t".join(tests) + "\n")