f2471280c7
The bug in question crashed LibO when inserting a group of cells.
This bug was quashed, per se, by commit
07e2c31831
, but it occurs to me that at
least the particular functionality of inserting a group of cells could
use more testing.
Change-Id: Icdbfff86fb0265eef325bcc94d9fc9f3e9e38413
20 lines
679 B
Makefile
20 lines
679 B
Makefile
# -*- 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_PythonTest_PythonTest,pyuno_pytests_insertremovecells))
|
|
|
|
$(eval $(call gb_PythonTest_set_defs,pyuno_pytests_insertremovecells,\
|
|
TDOC="$(SRCDIR)/pyuno/qa/pytests/testdocuments" \
|
|
))
|
|
|
|
$(eval $(call gb_PythonTest_add_modules,pyuno_pytests_insertremovecells,$(SRCDIR)/pyuno/qa/pytests,\
|
|
insertremovecells \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|