summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2022-05-04 20:58:38 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2022-05-04 20:58:38 (GMT)
commitcc908556deeb19b1c9c3f1074b12db3ad7b62668 (patch)
treebbf99a566fe0867d299df9c8804e21971e95d15a /test
parent9850ad59558ac0995f43420d76bc84ac1b6364f1 (diff)
downloadSCons-cc908556deeb19b1c9c3f1074b12db3ad7b62668.zip
SCons-cc908556deeb19b1c9c3f1074b12db3ad7b62668.tar.gz
SCons-cc908556deeb19b1c9c3f1074b12db3ad7b62668.tar.bz2
no need to actually have mingw installed to run test, removed that case fo skipping the test
Diffstat (limited to 'test')
-rw-r--r--test/ninja/mingw_depfile_format.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/ninja/mingw_depfile_format.py b/test/ninja/mingw_depfile_format.py
index 82667bd..93fd7da 100644
--- a/test/ninja/mingw_depfile_format.py
+++ b/test/ninja/mingw_depfile_format.py
@@ -31,14 +31,6 @@ from SCons.Platform.cygwin import CYGWIN_DEFAULT_PATHS
test = TestSCons.TestSCons()
-dp = MINGW_DEFAULT_PATHS + CYGWIN_DEFAULT_PATHS
-gcc = SCons.Tool.find_program_path(test.Environment(), 'gcc', default_paths=dp)
-if not gcc:
- test.skip_test("Skipping mingw test, no MinGW found.\n")
-
-# ninja must have the os environment setup to work properly
-os.environ["PATH"] += os.pathsep + os.path.dirname(gcc)
-
try:
import ninja
except ImportError: