[Zodb-checkins] CVS: StandaloneZODB - test.py:1.5

Jeremy Hylton jeremy@zope.com
Thu, 23 Aug 2001 22:13:09 -0400


Update of /cvs-repository/StandaloneZODB
In directory cvs.zope.org:/tmp/cvs-serv28734

Modified Files:
	test.py 
Log Message:
One more x-platform issues


=== StandaloneZODB/test.py 1.4 => 1.5 ===
             return
         # XXX special case bsddb3Storage
-        if dir[:29] == DOTSLASH + "bsddb3Storage/bsddb3Storage":
+        if dir[:29] == DOTSLASH + "bsddb3Storage%sbsddb3Storage" % os.sep:
             dir = "./" + dir[16:]
         for file in files:
             if file[:4] == "test" and file[-3:] == ".py":
@@ -111,4 +111,9 @@
             VERBOSE = VERBOSE + 1
     if args:
         filter = args[0]
-    main(filter)
+    try:
+        main(filter)
+    except ImportError, err:
+        print err
+        print sys.path
+        raise