diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-16 20:26:22 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-16 21:00:10 -0500 |
commit | 6aeeca56daa9065f607cc7056e7d86d237c84a99 (patch) | |
tree | eed194fef760a082353fc6a35b8ec958de74db2f /unotools | |
parent | 72a8d28df58c1368811035a0acab63d443fc94e0 (diff) |
Junit test for unotools
Change-Id: I7f3e6ed57fa40e9c7804c42c37c10023eefcc022
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/JunitTest_unotools_complex.mk | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/unotools/JunitTest_unotools_complex.mk b/unotools/JunitTest_unotools_complex.mk new file mode 100644 index 000000000000..44671ce2a596 --- /dev/null +++ b/unotools/JunitTest_unotools_complex.mk @@ -0,0 +1,37 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_JunitTest_JunitTest,unotools_complex)) + +$(eval $(call gb_JunitTest_use_jars,unotools_complex,\ + $(OUTDIR)/bin/OOoRunner.jar \ + $(OUTDIR)/bin/jurt.jar \ + $(OUTDIR)/bin/ridl.jar \ + $(OUTDIR)/bin/test-tools.jar \ + $(OUTDIR)/bin/test.jar \ + $(OUTDIR)/bin/unoil.jar \ +)) + +$(eval $(call gb_JunitTest_set_defs,unotools_complex,\ + $$(DEFS) \ +)) + +$(eval $(call gb_JunitTest_add_classes,unotools_complex,\ + complex.tempfile.TempFileUnitTest \ +)) + +$(eval $(call gb_JunitTest_add_sourcefiles,unotools_complex,\ + unotools/qa/complex/tempfile/TempFileTest \ + unotools/qa/complex/tempfile/TempFileUnitTest \ + unotools/qa/complex/tempfile/Test01 \ + unotools/qa/complex/tempfile/Test02 \ + unotools/qa/complex/tempfile/TestHelper \ +)) + +# vim: set noet sw=4 ts=4: |