summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2020-08-10 21:24:02 (GMT)
committerGitHub <noreply@github.com>2020-08-10 21:24:02 (GMT)
commit490c5426b1b23831d83d0c6b269858fb98450889 (patch)
tree5f6848c7df0080388184f788b8c7e050f69d016c
parenta02efe4d27c2aaa4af0cfaf87efa2146b677b17d (diff)
downloadcpython-490c5426b1b23831d83d0c6b269858fb98450889.zip
cpython-490c5426b1b23831d83d0c6b269858fb98450889.tar.gz
cpython-490c5426b1b23831d83d0c6b269858fb98450889.tar.bz2
bpo-40275: Fix failed test cases by using test helpers (GH-21811)
-rw-r--r--Lib/test/test__osx_support.py3
-rw-r--r--Lib/test/test_importlib/extension/test_case_sensitivity.py6
-rw-r--r--Lib/test/test_importlib/source/test_case_sensitivity.py6
-rw-r--r--Lib/test/test_selectors.py3
4 files changed, 9 insertions, 9 deletions
diff --git a/Lib/test/test__osx_support.py b/Lib/test/test__osx_support.py
index a3f41d2..907ae27 100644
--- a/Lib/test/test__osx_support.py
+++ b/Lib/test/test__osx_support.py
@@ -8,7 +8,6 @@ import stat
import sys
import unittest
-import test.support
from test.support import os_helper
import _osx_support
@@ -20,7 +19,7 @@ class Test_OSXSupport(unittest.TestCase):
self.maxDiff = None
self.prog_name = 'bogus_program_xxxx'
self.temp_path_dir = os.path.abspath(os.getcwd())
- self.env = test.support.EnvironmentVarGuard()
+ self.env = os_helper.EnvironmentVarGuard()
self.addCleanup(self.env.__exit__)
for cv in ('CFLAGS', 'LDFLAGS', 'CPPFLAGS',
'BASECFLAGS', 'BLDSHARED', 'LDSHARED', 'CC',
diff --git a/Lib/test/test_importlib/extension/test_case_sensitivity.py b/Lib/test/test_importlib/extension/test_case_sensitivity.py
index 3a85784..4d76fa0 100644
--- a/Lib/test/test_importlib/extension/test_case_sensitivity.py
+++ b/Lib/test/test_importlib/extension/test_case_sensitivity.py
@@ -1,5 +1,5 @@
from importlib import _bootstrap_external
-from test import support
+from test.support import os_helper
import unittest
import sys
from .. import util
@@ -23,7 +23,7 @@ class ExtensionModuleCaseSensitivityTest(util.CASEOKTestBase):
@unittest.skipIf(sys.flags.ignore_environment, 'ignore_environment flag was set')
def test_case_sensitive(self):
- with support.EnvironmentVarGuard() as env:
+ with os_helper.EnvironmentVarGuard() as env:
env.unset('PYTHONCASEOK')
self.caseok_env_changed(should_exist=False)
loader = self.find_module()
@@ -31,7 +31,7 @@ class ExtensionModuleCaseSensitivityTest(util.CASEOKTestBase):
@unittest.skipIf(sys.flags.ignore_environment, 'ignore_environment flag was set')
def test_case_insensitivity(self):
- with support.EnvironmentVarGuard() as env:
+ with os_helper.EnvironmentVarGuard() as env:
env.set('PYTHONCASEOK', '1')
self.caseok_env_changed(should_exist=True)
loader = self.find_module()
diff --git a/Lib/test/test_importlib/source/test_case_sensitivity.py b/Lib/test/test_importlib/source/test_case_sensitivity.py
index ad1cfdb..77c06a7 100644
--- a/Lib/test/test_importlib/source/test_case_sensitivity.py
+++ b/Lib/test/test_importlib/source/test_case_sensitivity.py
@@ -7,7 +7,7 @@ importlib = util.import_importlib('importlib')
machinery = util.import_importlib('importlib.machinery')
import os
-from test import support as test_support
+from test.support import os_helper
import unittest
@@ -42,7 +42,7 @@ class CaseSensitivityTest(util.CASEOKTestBase):
@unittest.skipIf(sys.flags.ignore_environment, 'ignore_environment flag was set')
def test_sensitive(self):
- with test_support.EnvironmentVarGuard() as env:
+ with os_helper.EnvironmentVarGuard() as env:
env.unset('PYTHONCASEOK')
self.caseok_env_changed(should_exist=False)
sensitive, insensitive = self.sensitivity_test()
@@ -52,7 +52,7 @@ class CaseSensitivityTest(util.CASEOKTestBase):
@unittest.skipIf(sys.flags.ignore_environment, 'ignore_environment flag was set')
def test_insensitive(self):
- with test_support.EnvironmentVarGuard() as env:
+ with os_helper.EnvironmentVarGuard() as env:
env.set('PYTHONCASEOK', '1')
self.caseok_env_changed(should_exist=True)
sensitive, insensitive = self.sensitivity_test()
diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py
index 2274c39..851b1fc 100644
--- a/Lib/test/test_selectors.py
+++ b/Lib/test/test_selectors.py
@@ -6,6 +6,7 @@ import signal
import socket
import sys
from test import support
+from test.support import os_helper
from test.support import socket_helper
from time import sleep
import unittest
@@ -536,7 +537,7 @@ class KqueueSelectorTestCase(BaseSelectorTestCase, ScalableSelectorMixIn):
# a file descriptor that's been closed should raise an OSError
# with EBADF
s = self.SELECTOR()
- bad_f = support.make_bad_fd()
+ bad_f = os_helper.make_bad_fd()
with self.assertRaises(OSError) as cm:
s.register(bad_f, selectors.EVENT_READ)
self.assertEqual(cm.exception.errno, errno.EBADF)