JunitTest_sfx2_complex.mk 2.8 KB
Newer Older
1
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2
#
3
# This file is part of the LibreOffice project.
4
#
5 6 7
# 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/.
8
#
9
# This file incorporates work covered by the following license notice:
10
#
11 12 13 14 15 16 17
#   Licensed to the Apache Software Foundation (ASF) under one or more
#   contributor license agreements. See the NOTICE file distributed
#   with this work for additional information regarding copyright
#   ownership. The ASF licenses this file to you under the Apache
#   License, Version 2.0 (the "License"); you may not use this file
#   except in compliance with the License. You may obtain a copy of
#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 19
#

20
$(eval $(call gb_JunitTest_JunitTest,sfx2_complex))
21 22 23

$(eval $(call gb_JunitTest_set_defs,sfx2_complex,\
    $$(DEFS) \
24
    -Dorg.openoffice.test.arg.tdoc=$(SRCDIR)/sfx2/qa/complex/sfx2/testdocuments \
25 26
))

Michael Stahl's avatar
Michael Stahl committed
27
$(eval $(call gb_JunitTest_use_jars,sfx2_complex,\
28 29 30 31 32 33
    OOoRunner \
    ridl \
    test \
    test-tools \
    unoil \
    jurt \
34 35
))

36
$(eval $(call gb_JunitTest_add_sourcefiles,sfx2_complex,\
37
    sfx2/qa/complex/sfx2/DocumentInfo \
38 39
    sfx2/qa/complex/sfx2/DocumentMetadataAccess \
    sfx2/qa/complex/sfx2/DocumentProperties \
40
    sfx2/qa/complex/sfx2/GlobalEventBroadcaster \
41 42
    sfx2/qa/complex/sfx2/StandaloneDocumentInfo \
    sfx2/qa/complex/sfx2/UndoManager \
43 44
    sfx2/qa/complex/sfx2/JUnitBasedTest \
    sfx2/qa/complex/sfx2/DocumentEvents \
45 46
    sfx2/qa/complex/sfx2/standalonedocinfo/StandaloneDocumentInfoTest \
    sfx2/qa/complex/sfx2/standalonedocinfo/Test01 \
47 48 49 50
    sfx2/qa/complex/sfx2/standalonedocinfo/TestHelper \
    sfx2/qa/complex/sfx2/tools/DialogThread \
    sfx2/qa/complex/sfx2/tools/TestDocument \
    sfx2/qa/complex/sfx2/tools/WriterHelper \
51 52 53 54 55 56 57 58
    sfx2/qa/complex/sfx2/undo/CalcDocumentTest \
    sfx2/qa/complex/sfx2/undo/ChartDocumentTest \
    sfx2/qa/complex/sfx2/undo/DocumentTest \
    sfx2/qa/complex/sfx2/undo/DocumentTestBase \
    sfx2/qa/complex/sfx2/undo/DrawDocumentTest \
    sfx2/qa/complex/sfx2/undo/DrawingOrPresentationDocumentTest \
    sfx2/qa/complex/sfx2/undo/ImpressDocumentTest \
    sfx2/qa/complex/sfx2/undo/WriterDocumentTest \
59 60 61
))

$(eval $(call gb_JunitTest_add_classes,sfx2_complex,\
62 63 64
    complex.sfx2.DocumentInfo \
    complex.sfx2.DocumentProperties \
    complex.sfx2.DocumentMetadataAccess \
65
    complex.sfx2.DocumentEvents \
66
    complex.sfx2.UndoManager \
67
))
68 69
# fd#35663 fails currently:
#    complex.sfx2.UndoManager \
70 71 72 73
# #i115674# fails currently: misses some OnUnfocus event
#	complex.sfx2.GlobalEventBroadcaster \
# breaks because binfilter export has been removed
#	complex.sfx2.StandaloneDocumentInfo \
74

75
# vim: set noet sw=4 ts=4: