sw/Module_sw.mk | 1 + sw/UITest_sw_trackedChanges.mk | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+)
New commits: commit 045c51c2cc0005f789828598123f52d7ba2e9fbc Author: Xisco Fauli <[email protected]> AuthorDate: Tue Feb 10 11:16:50 2026 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Tue Feb 10 14:13:05 2026 +0100 sw: move trackedChanges uitests to their own place Change-Id: I38c7d9e2765d79b5eeaa770c3e9d6c972c735242 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199046 Reviewed-by: Xisco Fauli <[email protected]> Tested-by: Jenkins diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk index 4741dc61193f..22b6a57804df 100644 --- a/sw/Module_sw.mk +++ b/sw/Module_sw.mk @@ -258,6 +258,7 @@ $(eval $(call gb_Module_add_uicheck_targets,sw,\ UITest_sw_options \ UITest_sw_sidebar \ UITest_sw_styleInspector \ + UITest_sw_trackedChanges \ UITest_sw_ui_fmtui \ UITest_sw_ui_frmdlg \ UITest_sw_ui_index \ diff --git a/sw/UITest_sw_trackedChanges.mk b/sw/UITest_sw_trackedChanges.mk new file mode 100644 index 000000000000..9be428161d38 --- /dev/null +++ b/sw/UITest_sw_trackedChanges.mk @@ -0,0 +1,20 @@ +# 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,sw_trackedChanges)) + +$(eval $(call gb_UITest_add_modules,sw_trackedChanges,$(SRCDIR)/sw/qa/uitest,\ + trackedChanges/ \ +)) + +$(eval $(call gb_UITest_set_defs,sw_trackedChanges, \ + TDOC="$(SRCDIR)/sw/qa/uitest/data" \ +)) + +$(eval $(call gb_UITest_avoid_oneprocess,sw_trackedChanges)) + +# vim: set noet sw=4 ts=4: diff --git a/sw/qa/uitest/writer_tests/compareDocuments.py b/sw/qa/uitest/trackedChanges/compareDocuments.py similarity index 100% rename from sw/qa/uitest/writer_tests/compareDocuments.py rename to sw/qa/uitest/trackedChanges/compareDocuments.py diff --git a/sw/qa/uitest/writer_tests8/tdf150443.py b/sw/qa/uitest/trackedChanges/tdf150443.py similarity index 100% rename from sw/qa/uitest/writer_tests8/tdf150443.py rename to sw/qa/uitest/trackedChanges/tdf150443.py diff --git a/sw/qa/uitest/writer_tests/tdf167128.py b/sw/qa/uitest/trackedChanges/tdf167128.py similarity index 100% rename from sw/qa/uitest/writer_tests/tdf167128.py rename to sw/qa/uitest/trackedChanges/tdf167128.py diff --git a/sw/qa/uitest/writer_tests7/tdf90401.py b/sw/qa/uitest/trackedChanges/tdf90401.py similarity index 100% rename from sw/qa/uitest/writer_tests7/tdf90401.py rename to sw/qa/uitest/trackedChanges/tdf90401.py diff --git a/sw/qa/uitest/writer_tests/trackedChanges.py b/sw/qa/uitest/trackedChanges/trackedChanges.py similarity index 100% rename from sw/qa/uitest/writer_tests/trackedChanges.py rename to sw/qa/uitest/trackedChanges/trackedChanges.py
