Issue 19340: test_sysconfig.test_srcdir fails when sys.base_prefix="/" (original) (raw)

While working on , i noticed that test_srcdir fails when python is built with prefix "".

This is because in Lib/sysconfig.py, _safe_realpath() is called on srcdir which normalises //lib to /lib. In the test case, it is compared directly to the output of get_makefile_filename().

====================================================================== FAIL: test_srcdir (main.TestSysConfig)

Traceback (most recent call last): File "/lib/python3.4/test/test_sysconfig.py", line 356, in test_srcdir srcdir) AssertionError: '//lib/python3.4/config-3.4dm' != '/lib/python3.4/config-3.4dm'

~/cpython$ python3.4 Python 3.4.0a3+ (default:dad1debba93c+, Oct 22 2013, 02:32:50) [GCC 4.4.3] on linux Type "help", "copyright", "credits" or "license" for more information.

import sys sys.prefix '/' sys.base_prefix '/'