Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMicheil Smith <micheil@brandedcode.com>2010-01-30 10:11:43 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-01-30 10:46:56 +0300
commit704f394c6671af5b981900fc3666f1b97ef580a9 (patch)
tree71cd0e59ca06a828daf75146afc2f0023811902a /tools
parentac2abe5b1e5e872a587da3593e8d764512f05438 (diff)
Adding output of Platform information into the test runner
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py
index 74bde14abf8..607a62e614b 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -101,6 +101,7 @@ class ProgressIndicator(object):
# ...and then reraise the exception to bail out
raise
self.Done()
+ print "\r\nPlatform: {0} {1}".format(platform.system(), platform.release())
return not self.failed
def RunSingle(self):