2013-03-30 22:10:48 +01:00
|
|
|
# -*- 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/.
|
|
|
|
#
|
|
|
|
|
2013-04-19 10:17:41 +02:00
|
|
|
$(eval $(call gb_PythonTest_PythonTest,sw_python))
|
2013-03-30 22:10:48 +01:00
|
|
|
|
2013-06-15 17:11:51 +02:00
|
|
|
$(eval $(call gb_PythonTest_set_defs,sw_python,\
|
2017-12-10 14:20:59 +01:00
|
|
|
TDOC="$(SRCDIR)/sw/qa/python/testdocuments" \
|
2013-06-15 17:11:51 +02:00
|
|
|
))
|
|
|
|
|
2013-04-19 10:17:41 +02:00
|
|
|
$(eval $(call gb_PythonTest_add_modules,sw_python,$(SRCDIR)/sw/qa/python,\
|
2017-05-26 17:52:14 +02:00
|
|
|
check_bookmarks \
|
2016-03-24 13:42:24 +08:00
|
|
|
check_change_color \
|
2013-06-16 17:13:43 +02:00
|
|
|
check_index \
|
2016-01-27 23:44:02 +02:00
|
|
|
check_flies \
|
|
|
|
check_fields \
|
2018-09-28 16:02:34 +02:00
|
|
|
check_xcloseable \
|
2016-01-27 23:44:02 +02:00
|
|
|
check_cross_references \
|
|
|
|
check_named_property_values \
|
|
|
|
check_indexed_property_values \
|
2015-12-10 18:43:32 +01:00
|
|
|
check_styles \
|
2018-09-18 17:52:35 +02:00
|
|
|
check_xtexttable \
|
2013-07-07 22:41:52 +02:00
|
|
|
check_table \
|
2018-09-24 21:10:45 +02:00
|
|
|
check_xautotextcontainer \
|
2018-10-02 18:59:29 +02:00
|
|
|
check_xautotextgroup \
|
2018-09-28 19:53:36 +02:00
|
|
|
check_xmodifiable2 \
|
2018-12-13 09:09:52 +01:00
|
|
|
check_xmodel \
|
2018-09-20 14:39:20 +02:00
|
|
|
check_xnamedgraph \
|
2018-10-01 19:54:35 +02:00
|
|
|
check_xrefreshable \
|
2018-09-26 16:28:19 +02:00
|
|
|
check_xtextrangecompare \
|
2013-04-20 20:51:11 +02:00
|
|
|
get_expression \
|
2013-04-27 11:33:21 +02:00
|
|
|
set_expression \
|
2017-06-05 19:16:35 +02:00
|
|
|
text_portion_enumeration_test \
|
2013-04-27 11:33:21 +02:00
|
|
|
var_fields \
|
2018-09-17 21:57:26 +03:00
|
|
|
xscriptprovider \
|
2018-09-20 11:24:48 +03:00
|
|
|
xtextfieldssupplier \
|
2018-09-29 02:57:31 +03:00
|
|
|
xcontrolshape \
|
2018-10-04 10:03:59 +03:00
|
|
|
xtextcontent \
|
2018-10-01 09:43:59 +03:00
|
|
|
xtextrange \
|
2018-10-03 09:39:50 +03:00
|
|
|
xtext \
|
2018-09-28 13:53:46 +03:00
|
|
|
xtextcursor \
|
2013-03-30 22:10:48 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|