Hello, 2007/7/17, Joe Smith wrote: > Building Py3k_struni under Cygwin I've noticed a few more tests failing than > the wiki shows. > These are using SVN revision 56413. > > Some spurious errors seem to occur if Python/ is not remaned temporally. I > have not included those. (This is an oddity of the cygwin '.exe' > autohandling combined with case-insensitivity)
For this, I have added a line to runtests.sh: # Choose the Python binary. case `uname` in Darwin) PYTHON=./python.exe;; CYGWIN*) PYTHON=./python.exe;; *) PYTHON=./python;; esac Hope this helps, -- Amaury Forgeot d'Arc _______________________________________________ Python-3000 mailing list Python-3000@python.org http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com