run-tests: loadable as module
authorSimon Heimberg <simohe@besonet.ch>
Tue, 01 Feb 2011 20:47:05 +0100
changeset 13347 ce07defe7d9f
parent 13346 91fe769ac84e
child 13348 31fdb04cb5e8
run-tests: loadable as module
tests/run-tests.py
--- a/tests/run-tests.py	Thu Feb 03 07:58:54 2011 +0100
+++ b/tests/run-tests.py	Tue Feb 01 20:47:05 2011 +0100
@@ -1109,4 +1109,5 @@
         time.sleep(1)
         cleanup(options)
 
-main()
+if __name__ == '__main__':
+    main()