summaryrefslogtreecommitdiff
path: root/indra/cmake/run_build_test.py
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2011-05-18 18:27:17 -0400
committerOz Linden <oz@lindenlab.com>2011-05-18 18:27:17 -0400
commiteb8f5d843f53ac848465dca6bfbd2d63bdb47b24 (patch)
tree5f325d50d56064c04073873695159011a39546fd /indra/cmake/run_build_test.py
parentc351b94723852174460a618621e0581af6364fce (diff)
parent2414417210723842d5b4de86f991db2e391a864c (diff)
storm-1267
Diffstat (limited to 'indra/cmake/run_build_test.py')
-rwxr-xr-xindra/cmake/run_build_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/cmake/run_build_test.py b/indra/cmake/run_build_test.py
index 320a9be8ab..ce2d1e0386 100755
--- a/indra/cmake/run_build_test.py
+++ b/indra/cmake/run_build_test.py
@@ -109,6 +109,8 @@ def main(command, libpath=[], vars={}):
os.environ.update(dict([(str(key), str(value)) for key, value in vars.iteritems()]))
# Run the child process.
print "Running: %s" % " ".join(command)
+ # Make sure we see all relevant output *before* child-process output.
+ sys.stdout.flush()
return subprocess.call(command)
if __name__ == "__main__":