changeset 393:e857e5cfc10f

tests: send warning to stderr instead of redirected stdout
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Thu, 11 Jun 2009 11:39:45 +0200
parents 35993ba9d119
children d70c8e45cb9e
files tests/run.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/run.py
+++ b/tests/run.py
@@ -48,7 +48,7 @@ if __name__ == '__main__':
         suite = []
         for arg in args:
             if arg not in all:
-                print 'test module %s not available' % arg
+                print >> sys.stderr, 'test module %s not available' % arg
             else:
                 suite.append(all[arg].suite())