diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-21 13:52:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-21 13:56:09 +0200 |
commit | 079525b21fa4f55902af86f67a79b5439db1a289 (patch) | |
tree | 3310ea1abfaae3c723627a2fb9ab756a703f907e /solenv | |
parent | fafeedc865821b1b0dc25b66afd54757d6440b16 (diff) |
fix 'make solenv' test failure on clang-3.8
clang-3.8 and clang trunk differ in how they represent ranged-for
which leads to a test failure
Change-Id: Ia8965802260fdc946d3a705c6fef82d98eeb8230
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/CompilerTest_compilerplugins_clang.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/solenv/CompilerTest_compilerplugins_clang.mk b/solenv/CompilerTest_compilerplugins_clang.mk index 10fa577d908a..f0c53ed3095a 100644 --- a/solenv/CompilerTest_compilerplugins_clang.mk +++ b/solenv/CompilerTest_compilerplugins_clang.mk @@ -38,11 +38,14 @@ $(eval $(call gb_CompilerTest_add_exception_objects,compilerplugins_clang, \ compilerplugins/clang/test/unnecessaryoverride-dtor \ compilerplugins/clang/test/unnecessaryparen \ compilerplugins/clang/test/unoany \ - compilerplugins/clang/test/unusedfields \ compilerplugins/clang/test/useuniqueptr \ compilerplugins/clang/test/vclwidgets \ )) +# clang-3.8 and clang trunk differ in how they represent ranged-for +# which leads to a test failure +# compilerplugins/clang/test/unusedfields \ + $(eval $(call gb_CompilerTest_use_externals,compilerplugins_clang, \ boost_headers \ cppunit \ |