diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-09-18 13:33:43 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-09-18 13:35:45 +0200 |
commit | 1c92a7fa0ae96724a08ac5f6dd22154b60484f6a (patch) | |
tree | c9312f8ffa79fcf35a9f3eae809bb5a25b66976e /solenv | |
parent | 5581ab4a1376f9c0353a00c9191839773143a942 (diff) |
clang plugins: this test fails on 32-bit Linux
... where sal_uIntPtr and sal_uInt32 are both "unsigned long";
disable test for now.
Change-Id: I8357bf425ab5d9166cd45ba5fb81ec6c1fac957a
error: 'error' diagnostics expected but not seen:
File compilerplugins/clang/test/convertuintptr.cxx Line 15: cast from 'sal_uIntPtr' (aka 'unsigned {{.+}}') to 'sal_uInt32' (aka 'unsigned {{.+}}') [loplugin:convertuintptr]
File compilerplugins/clang/test/convertuintptr.cxx Line 16: cast from 'sal_uIntPtr' (aka 'unsigned {{.+}}') to 'sal_uInt32' (aka 'unsigned {{.+}}') [loplugin:convertuintptr]
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 1a6001eb6a9f..02d6155d3dd5 100644 --- a/solenv/CompilerTest_compilerplugins_clang.mk +++ b/solenv/CompilerTest_compilerplugins_clang.mk @@ -12,7 +12,7 @@ $(eval $(call gb_CompilerTest_CompilerTest,compilerplugins_clang)) $(eval $(call gb_CompilerTest_add_exception_objects,compilerplugins_clang, \ compilerplugins/clang/test/casttovoid \ compilerplugins/clang/test/constparams \ - compilerplugins/clang/test/convertuintptr \ + $(if $(filter-out INTEL,$(CPU)),compilerplugins/clang/test/convertuintptr) \ compilerplugins/clang/test/cppunitassertequals \ compilerplugins/clang/test/datamembershadow \ compilerplugins/clang/test/droplong \ |