Bug 168520 - Give automated tests human-readable names
Summary: Give automated tests human-readable names
Status: NEW
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: LibreOffice (show other bugs)
Version:
(earliest affected)
unspecified
Hardware: All All
: medium normal
Assignee: Not Assigned
URL:
Whiteboard: target:26.2.0 target:26.8.0
Keywords: difficultyBeginner, easyHack, topicQA
Depends on:
Blocks: Dev-related
  Show dependency treegraph
 
Reported: 2025-09-23 09:22 UTC by Buovjaga
Modified: 2026-05-20 07:14 UTC (History)
2 users (show)

See Also:
Crash report or crash signature:


Attachments
descriptions for 172 unamed .py (17.43 KB, text/csv)
2025-09-24 08:09 UTC, fpy
Details
170 unamed .py, with tentative identifiers (generated by gemini) (19.14 KB, application/vnd.oasis.opendocument.spreadsheet)
2025-09-24 08:42 UTC, fpy
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Buovjaga 2025-09-23 09:22:32 UTC
> There are only two hard things in Computer Science:
> cache invalidation and naming things.
> - Phil Karlton

https://www.karlton.org/2017/12/naming-things-hard/

Due to the mentioned hard problem, our code base has lots of automated tests named like `tdf123456`, where tdf refers to this bug tracker and the number to the ID of a report. It would be nice to change this for the better, so readers of the code could get an idea of what a test is about at a glance.

Doing a search like this reveals multiple things:

git grep -Ei 'tdf[0-9]+' '*qa*.cxx' '*uitest*.py'

Some of the names do include text hinting about the topic.

Some of the test documents need to be renamed as well.

Many Python UI test files are named like `tdf123456` and need to be renamed as well.

To find only the lonesome cryptic names we may use this search:

git grep -Ei 'tdf[0-9]+[\(\)"]' '*qa*.cxx' '*uitest*.py'

The suggestion is to rename tests and files in the style of `tdf123456_hint_on_what_the_test_is_about`

The task can be a nice opportunity for new developers to get familiar with automated testing. While thinking about a better name, read and understand the test code and the bug report and run the single test as explained in the wiki articles:

https://wiki.documentfoundation.org/Development/Cpp_Unit_Tests

https://wiki.documentfoundation.org/Development/UITests
Comment 1 Commit Notification 2025-09-23 13:25:51 UTC
Ilmari Lauhakangas committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/15ee592a791acd921ed5356f374f18f660e5fc4f

tdf#168520 basic: rename testTdf149157* and testTdf149402* tests to

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 2 fpy 2025-09-24 08:09:10 UTC
Created attachment 202945 [details]
descriptions for 172 unamed .py

For reference, attached the list of 172 unamed .py

cd sw/qa/uitest && find -name tdf*.py | perl -pe 's/..//; ($i)=/(\d+).py$/; $d=`./wgetbz $i `; $_= "$d,$_" ' > desc.csv

with ./wgetbz =>  wget -qO - "https://bugs.documentfoundation.org/buglist.cgi?bug_id=$1&ctype=csv&columnlist=short_desc,bug_id" | tail -1


see https://wiki.documentfoundation.org/QA/Bugzilla/Export
Comment 3 fpy 2025-09-24 08:42:24 UTC
Created attachment 202946 [details]
170 unamed .py, with tentative identifiers (generated by gemini)

e.g.
calc_default_image_anchor_to_cell	Make anchor to cell the default for copy-paste and drag-and-drop images in Calc	writer_tests2/tdf133299.py
template_manager_cannot_rename_user_categories	Cannot rename user-defined categories in template manager	writer_tests2/tdf146375.py
insert_caption_separator_option_resets	Insert - Caption - Options - Separator does not work (resets to previous values)	writer_tests2/tdf153244.py
Comment 4 Buovjaga 2025-09-24 08:56:04 UTC
(In reply to fpy from comment #3)
> Created attachment 202946 [details]
> 170 unamed .py, with tentative identifiers (generated by gemini)
> 
> e.g.
> calc_default_image_anchor_to_cell	Make anchor to cell the default for
> copy-paste and drag-and-drop images in Calc	writer_tests2/tdf133299.py
> template_manager_cannot_rename_user_categories	Cannot rename user-defined
> categories in template manager	writer_tests2/tdf146375.py
> insert_caption_separator_option_resets	Insert - Caption - Options -
> Separator does not work (resets to previous values)
> writer_tests2/tdf153244.py

https://wiki.documentfoundation.org/Development/AI_policy

"You must not use an LLM to solve easy hacks."
Comment 5 Commit Notification 2025-09-24 15:25:51 UTC
Andreas Heinisch committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/3e8a15d37d11ee05cb70a1a52e7070cdd887848a

tdf#168520 - Rename tdf168478 to tdf168478_restore_multiple_cell_selection

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 6 Commit Notification 2025-09-24 15:25:55 UTC
Andreas Heinisch committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/0bda7192ca2a4a46bd3a3a11e6d0cddb4f2f4889

tdf#168520 - Rename tdf117328 to tdf117328_restore_empty_cells

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 7 Commit Notification 2025-09-24 16:31:05 UTC
Andreas Heinisch committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/091ad8440e15762daad5f20cabb12e201686b234

tdf#168520 - Rename tdf165846 to tdf165846_nu_min_value

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 8 Commit Notification 2025-10-27 16:21:55 UTC
Okhuomon Ajayi committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/0b9bab04928312054cdeaf496d462fd8984029e3

tdf#168520: rename tdf89383 test to tdf89383_readonly_password_ooxml

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 9 Commit Notification 2025-10-27 18:13:16 UTC
Okhuomon Ajayi committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/3eeb0700e66c155328a17de6757c4e8c543899fb

tdf#168520: rename tdf126226 and tdf144691 tests to

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 10 Commit Notification 2025-10-28 12:00:59 UTC
Okhuomon Ajayi committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/70fae1572c4fb6e6ff9f6615f1b2b92bcbfdc107

tdf#168520: rename tdf120731, tdf124586, tdf125104 and tdf128431

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 11 Commit Notification 2025-10-28 18:46:05 UTC
Okhuomon Ajayi committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/87ffdf9e44259ed2bbec7a3c69dcb5d33e255061

tdf#168520: rename tdf126017, tdf126168 and tdf131041 tests to

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 12 Commit Notification 2025-10-29 06:38:25 UTC
Okhuomon Ajayi committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/1baa44621b6121f73a7e987586c355005bcf28b4

tdf#168520: rename tdf141957, tdf150331 and tdf157569

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 13 Commit Notification 2025-10-29 06:39:34 UTC
Okhuomon Ajayi committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/2954ca548ed7575702a3dc66d37960a21bf89021

tdf#168520 Rename tdf101313, tdf107847, tdf118883, tdf124675 tests to

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 14 Commit Notification 2025-10-30 16:10:27 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/e57dfc93ee689d50a195806f32945d4864577c2c

tdf#168520 Rename UI test 133855.py with more speaking name

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 15 Commit Notification 2025-11-02 22:10:11 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/95cfca6c761c4dab9eaafa89aaadd767e2477b68

tdf#168520 Rename UI test for 153622

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 16 Commit Notification 2025-11-03 09:02:16 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/2a640a4e790c745dc77c836d4d083dd8e21b07b7

tdf#168520 Rename UI test for 46138

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 17 Commit Notification 2025-11-03 20:04:28 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/c9e67dc3fc67cc006eb421b63309992d48b7e55c

tdf#168520 Rename UI tests for calc_tests2

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 18 Commit Notification 2025-11-04 17:37:32 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/79903c8428e8420fed4831749ccccd6fb051db78

tdf#168520 Rename UI tests for calc_tests3

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 19 Commit Notification 2025-11-06 02:08:23 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/e3782c01b0dd8f25f95d2dcedee968b9ddcbb4e0

tdf#168520 Rename UI tests for calc_tests4

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 20 Commit Notification 2025-11-07 04:44:10 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/73021bbd6fc6cef059c58a20ee15ed78e298d919

tdf#168520 Rename UI tests for calc_tests6

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 21 Commit Notification 2025-11-09 16:15:34 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/964ae4e27d68ebf3f096e93f53128449ae5f4785

tdf#168520 Rename calc UI tests for conditional_format

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 22 Commit Notification 2025-11-12 19:08:03 UTC
Ilmari Lauhakangas committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/0f4b7e25d73cca0875ba7193e0098bd4be4e27c0

tdf#168520 Improve some recently changed UI test file names

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 23 Commit Notification 2025-11-14 05:49:48 UTC
Ilmari Lauhakangas committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/9358373c2c4342d0b31c286f3968f64c130e5686

tdf#168520 Improve UI test file name

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 24 Commit Notification 2025-11-15 18:28:28 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/42d9d2aeaca26c6693d76ffa160bbb7f0c382f3f

tdf#168520 Rename UI tests in calc_tests8

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 25 Commit Notification 2025-11-16 19:32:47 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/0124e2fe50f6cc949eaceeb81795479e5f82403c

tdf#168520 Rename UI tests in calc_tests7

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 26 Commit Notification 2025-11-16 19:33:50 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/8eedfb9ef4e2ac8b18ff5a7d4496a92e6530de26

tdf#168520 Rename UI tests in calc_tests9

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 27 Commit Notification 2025-11-19 06:46:23 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/f90cc80da2f519a2fcb76f1c916f42da65dfb525

tdf#168520 Rename UI calc tests in autofilter2

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 28 Commit Notification 2025-11-25 12:06:02 UTC
Jussi Suominen committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/6642f0baa4062d9cabfea470b85145b220411c44

tdf#168520 Rename testTdf114428 to testTdf114428_ignore_xml_declaration

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 29 Commit Notification 2025-11-28 11:53:00 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/f29abb3e10b30b507f58f1ffa6a395cd4335bb39

tdf#168520 Rename UI calc tests in csv_dialog

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 30 Commit Notification 2025-11-28 12:53:07 UTC
Ilmari Lauhakangas committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/62a28e36140048c81f8b1daca5810f73776e0f8d

tdf#168520 Don't use hash marks in file name to avoid issues with

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 31 Commit Notification 2025-12-01 17:57:06 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/24b13ad8659018667af6870368c5f7db34e61c1e

tdf#168520 Rename calc UI tests in csv_dialog (part 2)

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 32 Commit Notification 2025-12-03 09:55:16 UTC
Daniel committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/deb4622af08f14c0dcd791b9e2390ef886d4a2a8

tdf#168520 Give testTdf136957 and testTdf139000 human-readable names

It will be available in 26.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 33 Commit Notification 2025-12-07 06:39:36 UTC
Daniel Lee committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/ee97942b8f5b08b18c5c033fb551371a3c0b1ab7

tdf#168520: Rename test testTdf103104 and testTdf136032

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 34 Commit Notification 2025-12-08 06:48:59 UTC
Roman committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/8ab2bc8b4d9ffea8d0b4efc1a4e64537a2dac8bb

tdf#168520 Rename UI calc tests in chart (part1)

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 35 Dustin 2026-01-27 23:12:35 UTC
I've submitted a patch renaming one test in sc/qa/uitest/solver/solver.py:
https://gerrit.libreoffice.org/c/core/+/198241

test_tdf160064 → test_tdf160064_hidden_named_ranges_persist_after_reload
Comment 36 Commit Notification 2026-02-12 06:55:04 UTC
Aya Jamal committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/a5c1165b4a97cdc3e087b3bbb72eaef60268a4bf

tdf#168520 Rename testTdf134576 to

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 37 Commit Notification 2026-02-19 17:36:58 UTC
Dustin Hoeppner committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/211dd2464eb7a97e61256c804a5d0ff560ecfd32

tdf#168520 Rename test to describe hidden ranges persistence

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 38 Commit Notification 2026-02-19 17:37:00 UTC
Dustin Hoeppner committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/afeb4b7549c03e7b3d31f9db9029148ca563c476

tdf#168520 rename test_tdf138438 to test_tdf138438_top_10_autofilter

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 39 Commit Notification 2026-02-20 06:47:16 UTC
madhura committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/1edf6b9819e7b26283a1b3f0997ac371af887b48

tdf#168520 Rename test_tdf149714 to descriptive name

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 40 Commit Notification 2026-02-23 17:32:23 UTC
seyoufi22 committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/8200640ad7ea950859f635cd8d78c1196584df4a

tdf#168520 Rename testTdf150832 to

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 41 Commit Notification 2026-03-01 13:20:24 UTC
madhura committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/2e919d76f19c1c57b5248361d29abc3bcd6b6da0

tdf#168520 sw: Rename testTdf89288 to describe kerning behavior

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 42 Commit Notification 2026-03-24 05:52:06 UTC
Nguyen Minh Tien committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/4552c8c30567bc9288554d92f057ef388ee2ba73

tdf#168520 sw: Rename test case name to human-readable names

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 43 Vinay Patil 2026-03-26 07:07:42 UTC
Renamed testTdf134053 to testTdf134053_dashed_line_round_cap
 in canvas/qa/cppunit/canvastest.cxx


could not add rendering as the commit name was too big
Comment 44 Commit Notification 2026-03-30 15:50:28 UTC
iwritepoem committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/4abb556ae63b2d22e0a66a4c4d815da0566d965a

tdf#168520 Rename testTdf134053 to testTdf134053_dashed_line_round_cap

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 45 Commit Notification 2026-03-31 15:57:53 UTC
Ethan Garcia committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/045ce3a5be606fc85327f103b386da2d9bfe54d6

tdf#168520 Rename testTdf138410 to clarify Arabic diacritic search

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 46 Commit Notification 2026-04-04 05:59:38 UTC
yaswantpenapaka committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/267779d02adae744d46f06f2cdf999c0af669233

tdf#168520 sc: Rename GoalSeekTest tests to human-readable names

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 47 Commit Notification 2026-04-05 06:38:47 UTC
Ethan Garcia committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/30bcd0740008478061dd671cfc21197ce5d32746

tdf#168520 Rename tests to be human readable.

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 48 Commit Notification 2026-04-08 09:05:21 UTC
iwritepeom committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/2661b285b9c4e2fe2fc95a8f8aa7653ea1705b8d

tdf#168520 Rename testTdf108022 to

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 49 Commit Notification 2026-04-23 07:32:24 UTC
David Rosenfeld committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/d893bb4af08751bc07d61047259c87f1b9f85a3a

tdf#168520 Rename tests to be human readable in misc-tests.cxx

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 50 Commit Notification 2026-04-25 07:36:04 UTC
s-AustinAvery committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/4771e823dc3d3bb1b7e8c453a5f6c7ea0a845eaf

tdf#168520 give automated tests more readable names

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 51 Commit Notification 2026-05-20 04:32:21 UTC
s-AustinAvery committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/cc3c4ee29a433aedb111ad54aa773d92a8e7f48c

tdf#168520 give automated tests more readable names

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.
Comment 52 Commit Notification 2026-05-20 07:14:34 UTC
s-AustinAvery committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/69e0944a21db967d2dcd9bcef47da825fbfda883

tdf#168520 give automated tests more readable names

It will be available in 26.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.