basic/qa/cppunit/test_scanner.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
New commits: commit ee97942b8f5b08b18c5c033fb551371a3c0b1ab7 Author: Daniel Lee <[email protected]> AuthorDate: Sat Dec 6 20:48:38 2025 -0600 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Sun Dec 7 07:39:17 2025 +0100 tdf#168520: Rename test testTdf103104 and testTdf136032 to testTdf103104_accept_dot_after_line_continuation and testTdf136032_end_scan_on_comma to make it easier to understand what they are testing Change-Id: I339c187ec73c9f8a0af15770ab2a14366359ccb3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195181 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <[email protected]> Tested-by: Ilmari Lauhakangas <[email protected]> diff --git a/basic/qa/cppunit/test_scanner.cxx b/basic/qa/cppunit/test_scanner.cxx index 2b7d194d5438..4d3b1e7a17e1 100644 --- a/basic/qa/cppunit/test_scanner.cxx +++ b/basic/qa/cppunit/test_scanner.cxx @@ -45,8 +45,8 @@ private: void testNumbers(); void testDataType(); void testHexOctal(); - void testTdf103104(); - void testTdf136032(); + void testTdf103104_accept_dot_after_line_continuation(); + void testTdf136032_end_scan_on_comma(); // Adds code needed to register the test suite CPPUNIT_TEST_SUITE(ScannerTest); @@ -62,8 +62,8 @@ private: CPPUNIT_TEST(testNumbers); CPPUNIT_TEST(testDataType); CPPUNIT_TEST(testHexOctal); - CPPUNIT_TEST(testTdf103104); - CPPUNIT_TEST(testTdf136032); + CPPUNIT_TEST(testTdf103104_accept_dot_after_line_continuation); + CPPUNIT_TEST(testTdf136032_end_scan_on_comma); // End of test suite definition CPPUNIT_TEST_SUITE_END(); @@ -1111,7 +1111,7 @@ void ScannerTest::testHexOctal() CPPUNIT_ASSERT_EQUAL(cr, symbols[1].text); } -void ScannerTest::testTdf103104() +void ScannerTest::testTdf103104_accept_dot_after_line_continuation() { std::vector<Symbol> symbols; @@ -1141,7 +1141,7 @@ void ScannerTest::testTdf103104() CPPUNIT_ASSERT_EQUAL(cr, symbols[3].text); } -void ScannerTest::testTdf136032() +void ScannerTest::testTdf136032_end_scan_on_comma() { std::vector<Symbol> symbols; sal_Int32 errors;
