diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-09-17 18:37:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-09-17 23:00:41 +0200 |
commit | e2a525b00c9ea15408fb64dcb6749405739f58ab (patch) | |
tree | a636176fc09b0e72d984ad6753e8a58d33f0428a /solenv | |
parent | 59273adf87a7fa0bbf9e0ba40fe8d4f91f0a77a0 (diff) |
compilerplugins/clang/test/constfields doesn't work for clang-cl
...because loplugin:constfields is wrapped in
#if !defined _WIN32 //TODO, #include <sys/file.h>
Change-Id: I9b2a72ecd31f561c71be5a74a752344c24d40f26
Reviewed-on: https://gerrit.libreoffice.org/60598
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/CompilerTest_compilerplugins_clang.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/CompilerTest_compilerplugins_clang.mk b/solenv/CompilerTest_compilerplugins_clang.mk index 89085c5e4a8f..e187f374f915 100644 --- a/solenv/CompilerTest_compilerplugins_clang.mk +++ b/solenv/CompilerTest_compilerplugins_clang.mk @@ -14,7 +14,7 @@ $(eval $(call gb_CompilerTest_add_exception_objects,compilerplugins_clang, \ compilerplugins/clang/test/blockblock \ compilerplugins/clang/test/casttovoid \ compilerplugins/clang/test/commaoperator \ - compilerplugins/clang/test/constfields \ + $(if $(filter-out WNT,$(OS)),compilerplugins/clang/test/constfields) \ compilerplugins/clang/test/constparams \ compilerplugins/clang/test/convertlong \ compilerplugins/clang/test/cppunitassertequals \ |