1*cdf0e10cSrcweir#************************************************************************* 2*cdf0e10cSrcweir# 3*cdf0e10cSrcweir# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir# 5*cdf0e10cSrcweir# Copyright 2000, 2011 Oracle and/or its affiliates. 6*cdf0e10cSrcweir# 7*cdf0e10cSrcweir# OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir# 9*cdf0e10cSrcweir# This file is part of OpenOffice.org. 10*cdf0e10cSrcweir# 11*cdf0e10cSrcweir# OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir# it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir# only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir# 15*cdf0e10cSrcweir# OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir# but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir# GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir# (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir# 21*cdf0e10cSrcweir# You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir# version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir# <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir# for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir# 26*cdf0e10cSrcweir#************************************************************************* 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir$(eval $(call gb_JunitTest_JunitTest,framework_complex)) 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir$(eval $(call gb_JunitTest_set_defs,framework_complex,\ 31*cdf0e10cSrcweir $$(DEFS) \ 32*cdf0e10cSrcweir -Dorg.openoffice.test.arg.tdoc=$(SRCDIR)/framework/qa/complex/broken_document/test_documents \ 33*cdf0e10cSrcweir)) 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir$(eval $(call gb_JunitTest_add_jars,framework_complex,\ 36*cdf0e10cSrcweir $(OUTDIR)/bin/OOoRunner.jar \ 37*cdf0e10cSrcweir $(OUTDIR)/bin/ridl.jar \ 38*cdf0e10cSrcweir $(OUTDIR)/bin/test.jar \ 39*cdf0e10cSrcweir $(OUTDIR)/bin/unoil.jar \ 40*cdf0e10cSrcweir $(OUTDIR)/bin/jurt.jar \ 41*cdf0e10cSrcweir)) 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir$(eval $(call gb_JunitTest_add_sourcefiles,framework_complex,\ 44*cdf0e10cSrcweir framework/qa/complex/disposing/GetServiceWhileDisposingOffice \ 45*cdf0e10cSrcweir framework/qa/complex/path_substitution/PathSubstitutionTest \ 46*cdf0e10cSrcweir framework/qa/complex/loadAllDocuments/InteractionHandler \ 47*cdf0e10cSrcweir framework/qa/complex/loadAllDocuments/StreamSimulator \ 48*cdf0e10cSrcweir framework/qa/complex/loadAllDocuments/TestDocument \ 49*cdf0e10cSrcweir framework/qa/complex/loadAllDocuments/CheckXComponentLoader \ 50*cdf0e10cSrcweir framework/qa/complex/loadAllDocuments/StatusIndicator \ 51*cdf0e10cSrcweir framework/qa/complex/broken_document/TestDocument \ 52*cdf0e10cSrcweir framework/qa/complex/broken_document/LoadDocument \ 53*cdf0e10cSrcweir framework/qa/complex/XUserInputInterception/EventTest \ 54*cdf0e10cSrcweir framework/qa/complex/framework/autosave/AutoSave \ 55*cdf0e10cSrcweir framework/qa/complex/framework/autosave/Protocol \ 56*cdf0e10cSrcweir framework/qa/complex/framework/autosave/ConfigHelper \ 57*cdf0e10cSrcweir framework/qa/complex/framework/recovery/TimeoutThread \ 58*cdf0e10cSrcweir framework/qa/complex/framework/recovery/KlickButtonThread \ 59*cdf0e10cSrcweir framework/qa/complex/framework/recovery/RecoveryTools \ 60*cdf0e10cSrcweir framework/qa/complex/framework/recovery/RecoveryTest \ 61*cdf0e10cSrcweir framework/qa/complex/framework/recovery/CrashThread \ 62*cdf0e10cSrcweir framework/qa/complex/accelerators/AcceleratorsConfigurationTest \ 63*cdf0e10cSrcweir framework/qa/complex/accelerators/KeyMapping \ 64*cdf0e10cSrcweir framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor \ 65*cdf0e10cSrcweir framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor \ 66*cdf0e10cSrcweir framework/qa/complex/path_settings/PathSettingsTest \ 67*cdf0e10cSrcweir framework/qa/complex/desktop/DesktopTerminate \ 68*cdf0e10cSrcweir framework/qa/complex/imageManager/_XComponent \ 69*cdf0e10cSrcweir framework/qa/complex/imageManager/CheckImageManager \ 70*cdf0e10cSrcweir framework/qa/complex/imageManager/_XTypeProvider \ 71*cdf0e10cSrcweir framework/qa/complex/imageManager/_XInitialization \ 72*cdf0e10cSrcweir framework/qa/complex/imageManager/_XImageManager \ 73*cdf0e10cSrcweir framework/qa/complex/imageManager/_XUIConfigurationPersistence \ 74*cdf0e10cSrcweir framework/qa/complex/imageManager/_XUIConfiguration \ 75*cdf0e10cSrcweir framework/qa/complex/api_internal/CheckAPI \ 76*cdf0e10cSrcweir framework/qa/complex/dispatches/Interceptor \ 77*cdf0e10cSrcweir framework/qa/complex/ModuleManager/CheckXModuleManager \ 78*cdf0e10cSrcweir)) 79*cdf0e10cSrcweir 80*cdf0e10cSrcweir# does not build 81*cdf0e10cSrcweir# framework/qa/complex/dispatches/checkdispatchapi \ 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir$(eval $(call gb_JunitTest_add_classes,framework_complex,\ 84*cdf0e10cSrcweir)) 85*cdf0e10cSrcweir# these were disabled in the old build system too, please check 86*cdf0e10cSrcweir# carefully before reenabling 87*cdf0e10cSrcweir# complex.ModuleManager.CheckXModuleManager \ 88*cdf0e10cSrcweir complex.XUserInputInterception.EventTest \ 89*cdf0e10cSrcweir complex.accelerators.AcceleratorsConfigurationTest \ 90*cdf0e10cSrcweir complex.dispatches.checkdispatchapi \ 91*cdf0e10cSrcweir complex.api_internal.CheckAPI \ 92*cdf0e10cSrcweir complex.broken_document.LoadDocument \ 93*cdf0e10cSrcweir complex.desktop.DesktopTerminate \ 94*cdf0e10cSrcweir complex.disposing.GetServiceWhileDisposingOffice \ 95*cdf0e10cSrcweir complex.framework.autosave.AutoSave \ 96*cdf0e10cSrcweir complex.framework.recovery.RecoveryTest \ 97*cdf0e10cSrcweir complex.imageManager.CheckImageManager \ 98*cdf0e10cSrcweir complex.loadAllDocuments.CheckXComponentLoader \ 99*cdf0e10cSrcweir complex.path_settings.PathSettingsTest \ 100*cdf0e10cSrcweir complex.path_substitution.PathSubstitutionTest \ 101*cdf0e10cSrcweir 102*cdf0e10cSrcweir# vim: set noet sw=4 ts=4: 103