Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-08-24 | Free toString() in containers unit test | Rodrigo Arias Mallo | |
2025-05-01 | Allow whitespaces before separator | Rodrigo Arias Mallo | |
2025-05-01 | Flatten the conditionals so it is easier to read | Rodrigo Arias Mallo | |
2025-05-01 | Move a_Misc_parse_content_disposition() to misc.h | Rodrigo Arias Mallo | |
For now it allows building the unit test without linking problems. A more long-term solution is to split the code into separate modules that can be tested more easily. | |||
2025-05-01 | Re-enable failing tests and fix them | Cameron Paul | |
2025-05-01 | Fix disposition test linking and add more test cases | Cameron Paul | |
2025-05-01 | Add content disposition unit test | Rodrigo Arias Mallo | |
2025-02-05 | Fix several typos | Gevel Tekens | |
See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/L3FFAINJJMIOZQNID5HC2DHKJIIIHEYH/ | |||
2024-08-07 | Use dStrdup instead of strdup | Rodrigo Arias Mallo | |
The strdup function is not available in POSIX-2001, so we use our own implementation in dlib: dStrdup. Reviewed-by: dogma | |||
2024-08-07 | Avoid INADDR_LOOPBACK as it is an extension | Rodrigo Arias Mallo | |
Instead use inet_addr("127.0.0.1") which is POSIX 2001 and also more clear. Reviewed-by: dogma | |||
2024-08-07 | Use portable dUsleep() instead of usleep() | Rodrigo Arias Mallo | |
Reviewed-by: dogma | |||
2024-08-07 | Build tests with -pedantic | Rodrigo Arias Mallo | |
Reviewed-by: dogma | |||
2023-12-30 | Remove leftover test LDADD | Rodrigo Arias Mallo | |
2023-12-30 | Add hyphenation pattern files to distribution | Rodrigo Arias Mallo | |
The hyphenation test fails without them. | |||
2023-12-30 | Fix include paths for tests | Rodrigo Arias Mallo | |
They are now relative to the root directory of the project, instead of relative to the test file location. | |||
2023-12-30 | Transform asserts into ifs for shapes test | Rodrigo Arias Mallo | |
The asserts only take effect when building with them enabled. | |||
2023-12-30 | Fix unicode_test infinite loop | Rodrigo Arias Mallo | |
2023-12-30 | Update hyphenation test with expected outcomes | Rodrigo Arias Mallo | |
The hyphenation files are manually specified from the local file, so they are always the same. | |||
2023-12-21 | Split tests into unit and dw (graphical) | Rodrigo Arias Mallo | |
Graphical tests for the dw (Dillo Widget) are moved to test/dw, while unit tests are placed into test/unit. All tests are compiled with "make check" but only the tests that can run without intervention and without a graphic display are executed. |