Files
joniumGit b5ebbd7474 Fix find_tests line-number search for test names at the start of a line
The line-number search in UnityTestRunnerGenerator#find_tests requires
whitespace before the test name. A definition written as

    void
    test_something(void)

puts the name at column 0, so the regex never matches the definition
line. The search then scans to the end of the file for every test,
O(tests x lines), and reports line number 0 for all of them.

Accept start-of-line as well as whitespace before the name, and compile
the regex once per test instead of once per line.
2026-09-10 21:21:09 +03:00
..
2026-01-23 11:18:36 -05:00
2026-01-23 11:18:36 -05:00
2026-01-23 11:18:36 -05:00
2026-01-23 11:18:36 -05:00
2026-01-23 11:18:36 -05:00
2026-01-23 11:18:36 -05:00
2026-01-23 11:18:36 -05:00