[Python-checkins] r43635 - in python/trunk: Lib/test/regrtest.py Tools/buildbot/external.bat

tim.peters python-checkins at python.org
Tue Apr 4 17:21:02 CEST 2006


Author: tim.peters
Date: Tue Apr  4 17:21:02 2006
New Revision: 43635

Modified:
   python/trunk/Lib/test/regrtest.py
   python/trunk/Tools/buildbot/external.bat
Log:
sqlite on Windows:

- The buildbot "fetch it" step failed at the end, due to
  using Unix syntax in the final "copy the DLL" step.
  test_sqlite was skipped as a result.

- test_sqlite is no longer an expected skip on Windows.


Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Tue Apr  4 17:21:02 2006
@@ -741,7 +741,6 @@
         test_pwd
         test_resource
         test_signal
-        test_sqlite
         test_sunaudiodev
         test_threadsignals
         test_timing

Modified: python/trunk/Tools/buildbot/external.bat
==============================================================================
--- python/trunk/Tools/buildbot/external.bat	(original)
+++ python/trunk/Tools/buildbot/external.bat	Tue Apr  4 17:21:02 2006
@@ -32,4 +32,4 @@
 
 @rem sqlite
 if not exist sqlite-source-3.3.4 svn export http://svn.python.org/projects/external/sqlite-source-3.3.4
-if not exist build/Python/PCbuild/sqlite3.dll copy sqlite-source-3.3.4/sqlite3.dll build/Python/PCbuild
+if not exist build\Python\PCbuild\sqlite3.dll copy sqlite-source-3.3.4\sqlite3.dll build\Python\PCbuild


More information about the Python-checkins mailing list