[Bug 41273] New: xt/perltidy.t could use the same parallel handling as other tests
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41273 Bug ID: 41273 Summary: xt/perltidy.t could use the same parallel handling as other tests Initiative type: --- Sponsorship --- status: Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Test Suite Assignee: chris@bigballofwax.co.nz Reporter: martin.renvoize@openfifth.co.uk QA Contact: testopia@bugs.koha-community.org Some of our tests look for the number of CPU's in the environment they're running on and then split the tests to run in parallel. We could do that for xt/perltidy.t too and save time when running those tests locally. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41273 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|chris@bigballofwax.co.nz |martin.renvoize@openfifth.c | |o.uk -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41273 --- Comment #1 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 189714 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189714&action=edit Bug 41273: Parallelize test execution for improved performance This patch adds parallel processing to xt/perltidy.t using Parallel::ForkManager, following the same pattern as xt/pl_valid.t and xt/tt_tidy.t. Changes: - Uses Parallel::ForkManager to process files concurrently - Auto-detects CPU count via Sys::CPU (respects KOHA_PROVE_CPUS env var) - Preserves working directory context in forked child processes - Maintains correct failure tracking in %results hash Performance improvement: ~N× speedup on N-core systems (e.g., 8× faster on 8-core, 16× faster on 16-core machines) Test plan: 1. Clear incremental test cache (if needed): docker exec kohadev-koha bash -c 'rm -rf /tmp/koha-ci-results/perltidy*' 2. Run test: docker exec kohadev-koha bash -c 'KOHA_PROVE_CPUS=8 prove xt/perltidy.t' 3. Verify all 3138 tests pass 4. Verify test completes significantly faster than before -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41273 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41273 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@gmail.com -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41273 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas@bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41273 --- Comment #2 from Jonathan Druart <jonathan.druart@gmail.com> --- +# Capture the current working directory before forking +my $cwd = getcwd(); + # Ensure we're in the correct directory in the forked process + chdir($cwd); Do we really need that? -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org