Code

ignore coverage files
[roundup.git] / run_tests
index 0bfc161bc9ed11f3b6c6a2eb8fe1dd660719b288..032b7c96cfaeaf617d0189e7f46be88a580d127a 100755 (executable)
--- a/run_tests
+++ b/run_tests
@@ -9,13 +9,20 @@
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
-# $Id: run_tests,v 1.3 2002-01-23 20:09:41 jhermann Exp $
+# $Id: run_tests,v 1.4 2002-02-14 23:38:12 richard Exp $
 
-import test
-test.go()
+from test import go
+import sys
+if len(sys.argv) > 1:
+    go(sys.argv[1:])
+else:
+    go()
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.3  2002/01/23 20:09:41  jhermann
+# Proper fix for failing test
+#
 # Revision 1.2  2002/01/23 11:08:52  grubert
 #  . run_tests testReldate_date failed if LANG is 'german'
 #