diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2022-02-01 20:13:29 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2022-02-02 08:33:58 +0100 |
commit | ea23f640d3bf06e4035a96ebe8b8c07a59d6f12c (patch) | |
tree | e26489c919715063445bd3eb12b5199bf3bc5509 /sw | |
parent | 5e401d253891930e2836dbfc9e5118f340c3c575 (diff) |
CppunitTest_sw_ooxmlexport: remove no longer needed deny list
This suite no longer has tests with such document names.
Change-Id: I1fbe072c1663f657354493b8db1b69fcedd7f162
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129304
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/extras/ooxmlexport/ooxmlexport.cxx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx index 3e44a2f869aa..d11dc3f7f2e1 100644 --- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx +++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx @@ -42,14 +42,8 @@ protected: * Denylist handling */ bool mustTestImportOf(const char* filename) const override { - const char* aDenylist[] = { - "math-escape.docx", - "math-mso2k7.docx", - }; - std::vector<const char*> vDenylist(aDenylist, aDenylist + SAL_N_ELEMENTS(aDenylist)); - // If the testcase is stored in some other format, it's pointless to test. - return (OString(filename).endsWith(".docx") && std::find(vDenylist.begin(), vDenylist.end(), filename) == vDenylist.end()); + return OString(filename).endsWith(".docx"); } /** |