dillo-browser / dillo

Dillo, a multi-platform graphical web browser
https://dillo-browser.github.io/
GNU General Public License v3.0
548 stars 27 forks source link

Move test suite to another repository #252

Open rodarima opened 1 month ago

rodarima commented 1 month ago

Our current test suite involves a very limited number of simple HTML rendering tests. These tests are currently distributed in the tarball release.

However, there are other tests we should be doing which would involve many other pieces that we don't use for Dillo:

All those tests will likely require extra software dependencies that would cause Dillo to have a unnecessary long list of dependencies for testing.

Having tests in a separate repository allows us to test multiple releases of Dillo with the latest test suite. We could even try to run WPT or port some of the tests to our test suite.

Moving them outside the repository also makes the Dillo repository smaller, as we don't have to bring unnecessary images or other potentially big files with the browser.

The drawbacks of this approach is that we won't be able to simply run make check to pass all tests in any platform.

We can develop Dillo from an old machine too, as the current requirements to build it are not too high. Ideally we should keep the requirements for both using Dillo and developing it about the same.

This would also lift the strict requirements to stick to old C and C++ standards for Dillo code, but allowing them for testing.

This can be tested without disrupting the current test suite distributed with Dillo, and then decided once we have more information on how that would work out.