Fix for issue #5408. This only enables test_osx_env when the current build

is actually a framework build on OSX (the only environment where this test
is valid).
This commit is contained in:
Ronald Oussoren 2009-03-04 22:57:10 +00:00
parent 5f734f1b13
commit 8954cd36ba

View file

@ -27,7 +27,9 @@ class OSXEnvironmentVariableTestCase(unittest.TestCase):
self._check_sys('PYTHONEXECUTABLE', '==', 'sys.executable')
def test_main():
if sys.platform == 'darwin':
from distutils import sysconfig
if sys.platform == 'darwin' and sysconfig.get_config_var('WITH_NEXT_FRAMEWORK'):
run_unittest(OSXEnvironmentVariableTestCase)
if __name__ == "__main__":