summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_osx_env.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-40275: Use new test.support helper submodules in tests (GH-21412)Hai Shi2020-07-091-1/+1
|
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-1/+1
| | | | | | | I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run.
* #17779: test_osx_env now works with unittest test discovery. Patch by ↵Ezio Melotti2013-04-191-5/+4
| | | | Zachary Ware.
* Remove last use of distutils.sysconfig from the stdlib (#11364).Éric Araujo2011-03-021-2/+1
| | | | | Apart from distutils itself, the stdlib has now officially switched to the new top-level sysconfig module. Patch greenlighted by Ned Deily.
* Minor tweak of test_osx_env toRonald Oussoren2010-07-231-1/+1
| | | | | avoid failing when the framework is not yet installed.
* Fix for issue #5408. This only enables test_osx_env when the current buildRonald Oussoren2009-03-041-1/+3
| | | | | is actually a framework build on OSX (the only environment where this test is valid).
* This fixes issue5143 and includes a test.Ronald Oussoren2009-02-121-0/+34
Issue5143 notes that getpath.c and main.c pass a 'char*' where a 'wchar_t*' is expected on OSX.