diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-09-21 13:24:35 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-09-21 14:30:27 +0200 |
commit | b637a607eadaae19e5f6d1004127019dde410798 (patch) | |
tree | 8897045e11da6aeb3a07387f5815106100b88bbf /emfio | |
parent | 121771e37f7e2de41cd5643475861062bf25627b (diff) |
emfio: fix emf/wmf test cppunit name vs makefile name
The convention is that CppunitTest_foo is defined in CppunitTest_foo.mk,
but we got an extra "_test" suffix here, fix that.
Change-Id: I226031c99c457e1b54714a425fd9c7abfc876cda
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103096
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'emfio')
-rw-r--r-- | emfio/CppunitTest_emfio_emf.mk (renamed from emfio/CppunitTest_emfio_emf_test.mk) | 0 | ||||
-rw-r--r-- | emfio/CppunitTest_emfio_wmf.mk (renamed from emfio/CppunitTest_emfio_wmf_test.mk) | 0 | ||||
-rw-r--r-- | emfio/Module_emfio.mk | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/emfio/CppunitTest_emfio_emf_test.mk b/emfio/CppunitTest_emfio_emf.mk index 5b32187b7ea8..5b32187b7ea8 100644 --- a/emfio/CppunitTest_emfio_emf_test.mk +++ b/emfio/CppunitTest_emfio_emf.mk diff --git a/emfio/CppunitTest_emfio_wmf_test.mk b/emfio/CppunitTest_emfio_wmf.mk index ec67bff3a9b4..ec67bff3a9b4 100644 --- a/emfio/CppunitTest_emfio_wmf_test.mk +++ b/emfio/CppunitTest_emfio_wmf.mk diff --git a/emfio/Module_emfio.mk b/emfio/Module_emfio.mk index c4d5ec70be9c..96b69d1cbe86 100644 --- a/emfio/Module_emfio.mk +++ b/emfio/Module_emfio.mk @@ -23,8 +23,8 @@ $(eval $(call gb_Module_add_targets,emfio,\ )) $(eval $(call gb_Module_add_check_targets,emfio,\ - CppunitTest_emfio_emf_test \ - $(if $(MERGELIBS),,CppunitTest_emfio_wmf_test) \ + CppunitTest_emfio_emf \ + $(if $(MERGELIBS),,CppunitTest_emfio_wmf) \ )) # vim: set noet ts=4 sw=4: |