summaryrefslogtreecommitdiffstats
path: root/test/Clang
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-05-25 19:48:45 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-05-25 19:48:45 (GMT)
commitcf74ad1fc7b745f8dfcf5886aa5e0326d104caa0 (patch)
tree9eb9c0cc9768787aa9e7c86c7adcd43b37b9ec5a /test/Clang
parent6b53064b5e29c830ff6df38a02ca76f13c0c8971 (diff)
downloadSCons-cf74ad1fc7b745f8dfcf5886aa5e0326d104caa0.zip
SCons-cf74ad1fc7b745f8dfcf5886aa5e0326d104caa0.tar.gz
SCons-cf74ad1fc7b745f8dfcf5886aa5e0326d104caa0.tar.bz2
remove mingw tool as it's breaking non win tests
Diffstat (limited to 'test/Clang')
-rw-r--r--test/Clang/clangxx_specific_environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Clang/clangxx_specific_environment.py b/test/Clang/clangxx_specific_environment.py
index 35540bb..39eaab1 100644
--- a/test/Clang/clangxx_specific_environment.py
+++ b/test/Clang/clangxx_specific_environment.py
@@ -34,7 +34,7 @@ if not test.where_is('clang'):
test.write('SConstruct', """\
DefaultEnvironment(tools=[])
-env = Environment(tools=['mingw','clang++', 'link'])
+env = Environment(tools=['clang++', 'link'])
env.Program('foo.cpp')
""")