summaryrefslogtreecommitdiff
path: root/test/unit/cookies.c
AgeCommit message (Collapse)Author
2024-08-07Avoid INADDR_LOOPBACK as it is an extensionRodrigo Arias Mallo
Instead use inet_addr("127.0.0.1") which is POSIX 2001 and also more clear. Reviewed-by: dogma
2024-08-07Use portable dUsleep() instead of usleep()Rodrigo Arias Mallo
Reviewed-by: dogma
2024-08-07Build tests with -pedanticRodrigo Arias Mallo
Reviewed-by: dogma
2023-12-30Fix include paths for testsRodrigo Arias Mallo
They are now relative to the root directory of the project, instead of relative to the test file location.
2023-12-21Split 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.