[pypy-commit] pypy default: fix test

mattip noreply at buildbot.pypy.org
Thu Jun 12 23:58:17 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r72038:c2bd8af00b27
Date: 2014-06-13 00:57 +0300
http://bitbucket.org/pypy/pypy/changeset/c2bd8af00b27/

Log:	fix test

diff --git a/pypy/tool/release/test/test_package.py b/pypy/tool/release/test/test_package.py
--- a/pypy/tool/release/test/test_package.py
+++ b/pypy/tool/release/test/test_package.py
@@ -115,9 +115,8 @@
     basedir = dirname(dirname(dirname(dirname(dirname(abspath(__file__))))))
     options.no_tk = False
     if sys.platform == 'win32':
-        # Following recommended build setup at
-        # http://doc.pypy.org/en/latest/windows.html#abridged-method-for-ojit-builds-using-visual-studio-2008
-        options.license_base = dirname(basedir) + '/local'
+         # as on buildbot YMMV
+        options.license_base = os.path.join(basedir, r'..\..\..\local')
     else:
         options.license_base = '/usr/share/doc'
     license = package.generate_license(py.path.local(basedir), options)


More information about the pypy-commit mailing list