diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2014-02-18 19:45:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-18 20:12:24 +0000 |
commit | 77e95ea6679fd947c910536357cb53f684ffb539 (patch) | |
tree | 5572f640417f57786420173e37bc77d86766552b /unoidl | |
parent | 3d66adaa7771c68f97990d81451c775ed06c4837 (diff) |
tests belong to check target
- the CustomTarget seems to be a test, not a build target
- worse, it is .PHONY
- ... and eats 30% of the top-level build-nocheck time alone
- so hopefully, we can we at least make it a check target
Change-Id: I113777cbd849aab9e8d0a77184e31194bc07232e
Reviewed-on: https://gerrit.libreoffice.org/8111
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'unoidl')
-rw-r--r-- | unoidl/Module_unoidl.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unoidl/Module_unoidl.mk b/unoidl/Module_unoidl.mk index 0136485660a8..e158e125c894 100644 --- a/unoidl/Module_unoidl.mk +++ b/unoidl/Module_unoidl.mk @@ -16,9 +16,11 @@ $(eval $(call gb_Module_add_targets,unoidl, \ )) $(eval $(call gb_Module_add_targets_for_build,unoidl, \ - CustomTarget_unoidl-write_test \ Executable_unoidl-check \ Executable_unoidl-write \ )) +$(eval $(call gb_Module_add_check_targets,unoidl, \ + CustomTarget_unoidl-write_test \ +)) # vim: set noet sw=4 ts=4: |