summaryrefslogtreecommitdiff
path: root/setuptools/_distutils/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-11-18 17:20:43 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-11-18 17:20:43 -0500
commit58ffbdc90d361405dadd6354bfb6628f4dbfb049 (patch)
tree3f53e39ea586a2c5bfe998079503cca389db6722 /setuptools/_distutils/tests
parent26d7411464115c6170ed666e72e388d53d4b7fd2 (diff)
parent514e9d03acb51ea93205c1fd0d336174c9481de7 (diff)
downloadpython-setuptools-git-58ffbdc90d361405dadd6354bfb6628f4dbfb049.tar.gz
Merge https://github.com/pypa/distutils into feature/local-schemes
Diffstat (limited to 'setuptools/_distutils/tests')
-rw-r--r--setuptools/_distutils/tests/test_cygwinccompiler.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setuptools/_distutils/tests/test_cygwinccompiler.py b/setuptools/_distutils/tests/test_cygwinccompiler.py
index 9dc869de..2a02eed4 100644
--- a/setuptools/_distutils/tests/test_cygwinccompiler.py
+++ b/setuptools/_distutils/tests/test_cygwinccompiler.py
@@ -141,10 +141,13 @@ class CygwinCCompilerTestCase(support.TempdirManager,
sys.version = ('2.5.1 (r251:54863, Apr 18 2007, 08:51:08) '
'[MSC v.1500 32 bits (Intel)]')
self.assertEqual(get_msvcr(), ['msvcr90'])
+
+ sys.version = '3.10.0 (tags/v3.10.0:b494f59, Oct 4 2021, 18:46:30) [MSC v.1929 32 bit (Intel)]'
+ self.assertEqual(get_msvcr(), ['ucrt', 'vcruntime140'])
# unknown
sys.version = ('2.5.1 (r251:54863, Apr 18 2007, 08:51:08) '
- '[MSC v.1999 32 bits (Intel)]')
+ '[MSC v.2000 32 bits (Intel)]')
self.assertRaises(ValueError, get_msvcr)
def test_suite():