From c873f8d75a2a4bc28a13553755c6d38b0e026e11 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sun, 19 Feb 2017 23:56:13 +0100 Subject: [PATCH] uitest: move all the conditional format tests into an own test Change-Id: I5673341b05c8352bc1d46f1483c265ccdc6a1cc5 Reviewed-on: https://gerrit.libreoffice.org/34667 Tested-by: Jenkins Reviewed-by: Markus Mohrhard --- sc/Module_sc.mk | 4 ++++ sc/UITest_conditional_format.mk | 15 +++++++++++++++ sc/qa/uitest/__init__.py | 0 sc/qa/uitest/conditional_format/__init__.py | 0 .../qa/uitest/conditional_format}/tdf105411.py | 0 .../qa/uitest/conditional_format}/tdf105466.py | 0 .../qa/uitest/conditional_format}/tdf96453.py | 0 7 files changed, 19 insertions(+) create mode 100644 sc/UITest_conditional_format.mk create mode 100644 sc/qa/uitest/__init__.py create mode 100644 sc/qa/uitest/conditional_format/__init__.py rename {uitest/calc_tests => sc/qa/uitest/conditional_format}/tdf105411.py (100%) rename {uitest/calc_tests => sc/qa/uitest/conditional_format}/tdf105466.py (100%) rename {uitest/calc_tests => sc/qa/uitest/conditional_format}/tdf96453.py (100%) diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk index 0ff41df232b3..274e3e527620 100644 --- a/sc/Module_sc.mk +++ b/sc/Module_sc.mk @@ -137,4 +137,8 @@ $(eval $(call gb_Module_add_screenshot_targets,sc,\ CppunitTest_sc_screenshots \ )) +$(eval $(call gb_Module_add_uicheck_targets,sc,\ + UITest_conditional_format \ +)) + # vim: set noet sw=4 ts=4: diff --git a/sc/UITest_conditional_format.mk b/sc/UITest_conditional_format.mk new file mode 100644 index 000000000000..4bc05b0970f8 --- /dev/null +++ b/sc/UITest_conditional_format.mk @@ -0,0 +1,15 @@ +# -*- 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_UITest_UITest,conditional_format)) + +$(eval $(call gb_UITest_add_modules,conditional_format,$(SRCDIR)/sc/qa/uitest,\ + conditional_format/ \ +)) +# vim: set noet sw=4 ts=4: diff --git a/sc/qa/uitest/__init__.py b/sc/qa/uitest/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sc/qa/uitest/conditional_format/__init__.py b/sc/qa/uitest/conditional_format/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/uitest/calc_tests/tdf105411.py b/sc/qa/uitest/conditional_format/tdf105411.py similarity index 100% rename from uitest/calc_tests/tdf105411.py rename to sc/qa/uitest/conditional_format/tdf105411.py diff --git a/uitest/calc_tests/tdf105466.py b/sc/qa/uitest/conditional_format/tdf105466.py similarity index 100% rename from uitest/calc_tests/tdf105466.py rename to sc/qa/uitest/conditional_format/tdf105466.py diff --git a/uitest/calc_tests/tdf96453.py b/sc/qa/uitest/conditional_format/tdf96453.py similarity index 100% rename from uitest/calc_tests/tdf96453.py rename to sc/qa/uitest/conditional_format/tdf96453.py